The menu I am trying to convert looks like this. I have included the menu manager template that I would like to use for this menu:
Code: Select all
<div id="buttons">
{menu template='minimal_menu.tpl' number_of_levels='1'}
<!--<a href="index.html" class="but" title="">Home</a><div class="but_razd"></div>
<a href="blog.html" class="but" title="">Blog</a><div class="but_razd"></div>
<a href="gallery.html" class="but" title="">Gallery</a><div class="but_razd"></div>
<a href="about_us.html" class="but" title="">About us</a><div class="but_razd"></div>
<a href="contact_us.html" class="but" title="">Contact us</a>-->
</div>
Code: Select all
#buttons{
text-align:center;
height: 25px;
margin: 0px auto;
padding: 18px 0px 0px 36px;
background: url([[root_url]]/uploads/water/images/buttons.gif) center top no-repeat;
width: 978px;
}
#buttons a {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 18px;
display: block;
float: left;
text-decoration: none;
color: #006CAD;
text-align: center;
padding-top: 0px;
font-weight:100;
}
.but_razd { width: 78px;
height: 20px;
background:url([[root_url]]/uploads/water/images/but_razd.gif) center 2px no-repeat;
float:left;}
#buttons .but:hover {
text-decoration:underline;
}
Converting these css menus take me ten to twenty times longer to convert then an entire template. I am sure it can't be as hard as I am making it.
Elkman