Drupal Question:
How can I create a custom region in my Drupal template?
Answer:
Adding a new region in your drupal template is not a hard thing, but its not as easy as adding a new block. It's basically a two-step process:
► define the custom region in your theme's .info file
► insert some PHP in your theme's page.tpl.php file wherever you would like the new region to appear
► define the custom region in your theme's .info file
► insert some PHP in your theme's page.tpl.php file wherever you would like the new region to appear
Previous Question | Next Question |
What does Views do and how do you use it? | How to add custom PHP codes in my Drupal pages or blocks? |