Hello.
I'm working on a customized theme for my website which uses drupal 6.x .
This is what I have thus far. This includes the css with crazy colors so I could see the divs to make sure they were going where I wanted.
// Custom Queer women ottawa theme created by Kristina Hall.
print $language->language " xml:lang="
print $language->language ">
print $head_title;
if ($logo)
{
print '<img src="'. check_url($logo) .'" alt="'. $site_title .'" id="logo" title="Home" />';
}
print ($logo ? '' : $site_title_html) .'</a>';
}
if ($site_title)
{
print '<h1><a href="'. check_url(
print ($logo ? '' : $site_title_html) .'</a></h1>';
}
if ($site_slogan):
print $site_slogan; endif;
if ($left):
print $left
endif;
if ($mission || $featured):
if ($mission): print '<div id="mission"><p>'. $mission .'</p></div>'; endif; if ($featured): print $featured; endif;
endif;
if ($title) { print $title
}
if ($tabs) {
print $tabs }
if ($show_messages && $messages): print $messages; endif;
if ($help): print $help; endif;
print $content;
if ($right):
print $right
endif;
My question is, similar to the beginning theme I want some extra possible spaces for content such as two extra menu spaces (site_links, account_links) and several content areas (footer_left, left_middle_footer, right_middle_footer, and footer_content).
How do I do that? I looked at beginning closely but I didn't notice how to do it.
Comments
oops <?php// Custom Queer
oops
Creating new regions:
Creating new regions: http://yubastudios.com/blog/drupal-creating-new-regions
---
Yuriy Babenko
www.yubastudios.com
My Drupal tutorials: http://yubastudios.com/blog/tag/tutorials
---
Yuriy Babenko | Technical Consultant & Senior Developer
http://yuriybabenko.com
Thank you!
Thank you!