
Originally Posted by
high2K
Is there also some way that I can put the search box in the logo area and evenly space out the horizontal navigation buttons?
As for your shopping cart link in the header... you can manually add that to includes/templates/YOUR_TEMPLATE/common/tpl_header.php. If you're not using the search box, I'd put it in place of <?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>
As for evenly spacing out the horizontal navigation buttons, open up includes/templates/YOUR_TEMPLATE/css/stylesheet_header_menu.css and replace three sections of css (div#dropMenu li, div#dropMenu li a, div#dropMenu ul.level2) with the code below:
Code:
div#dropMenu li {
position:relative;
list-style:none;
margin:0;
float:left;
line-height:1em;
width:16.6%;
}
Code:
div#dropMenu li a {display: block; padding: .6em 0;text-decoration: none; text-transform:uppercase; color:#ffffff; text-align:center; border-right:1px solid #ffffff;}
Code:
div#dropMenu ul.level2 {background:#4f4f4f;z-index:1000;position:absolute;left:0;}
Sorry to all of those who have asked to evenly space out their menu before high2k, but this solution just dawned on me!
Bookmarks