Hi all,
I am developing a website in drupal
I am using the theme garland.
I have both header menus and footer menus.
I have created the footer menus.
Footer menus I want to display horizontally and I want it in browsers like IE, Firebox, and Netscape Navigator.
Can anybody help me?
The code inside the page.tpl.php is given below.
// $Id: page.tpl.php,v 1.18 2008/01/24 09:42:53 goba Exp $
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
print $language->language " lang=" print $language->language " dir=" print $language->dir ">
print $head_title
print $head
print $styles
print $scripts
print phptemplate_get_ie_styles();
print phptemplate_body_class($left, $right); >
print $header;
-->
// Prepare header
$site_fields = array();
if ($site_name) {
$site_fields[] = check_plain($site_name);
}
if ($site_slogan) {
$site_fields[] = check_plain($site_slogan);
}
$site_title = implode(' ', $site_fields);
if ($site_fields) {
$site_fields[0] = '<span>'. $site_fields[0] .'</span>';
}
$site_html = implode(' ', $site_fields);
if ($logo || $site_title) {
print '<h1><a href="'. check_url($front_page) .'" title="'. $site_title .'">';
if ($logo) {
print '<img src="'. check_url($logo) .'" alt="'. $site_title .'" id="logo" />';
}
print $site_html .'</a></h1>';
}
if (isset($secondary_links)) :
print theme('links', $secondary_links, array('class' => 'links secondary-links'))
endif;
if ($left):
endif;
print $breadcrumb; if ($mission): print '<div id="mission">'. $mission .'</div>'; endif; if ($tabs): print '<div id="tabs-wrapper" class="clear-block">'; endif; if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; if ($tabs): print '<ul class="tabs primary">'. $tabs .'</ul></div>'; endif; if ($tabs2): print '<ul class="tabs secondary">'. $tabs2 .'</ul>'; endif; if ($show_messages && $messages): print $messages; endif; print $help;
print $content
print $feed_icons
if ($right):
endif;
print $closure
Please help me to get the footer menus to be displayed horizontally in all the above mentioned browsers.
Thanks and Regards