Closed (fixed)
Project:
Boron (HTML5 base theme)
Version:
6.x-1.0
Component:
Documentation
Priority:
Major
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
9 Aug 2012 at 01:33 UTC
Updated:
25 Oct 2012 at 13:01 UTC
Hello,
Would you please explain how to add new regions to the theme ? I am a bit perplexed as the explanation at region.tpl php is above my head. I need only to add a content-top region.
Many thanks for the great theme.
Comments
Comment #1
makangus commentedIn boron.info, add your own region by adding
regions[new_region] = New RegionThen in page.tpl.php, you will need to print the region out by
<?php print render($page['new_region']); ?>I would recommend creating a sub-theme of boron instead of modifying the boron theme directly though.
Comment #2
tlattimore commentedMarking as fixed based on #1.