I've mostly got it. I adapted it to yoo theme yt_core using the split menu.
So there's a file yt_splitmenu.php, modify anything that outputs
Code:
<li><a href...>Menu</a></li>
to
Code:
<li><b><a href=...</b></li>
The code wrapper looks like this BUT you can ignore overlay and mainmenu as they're not defined in css anymore,just #menu is:
Code:
<div id="menu">
<div class="overlay"></div>
<ul class="mainmenu">
<li class="level1 item3"><a href="linktosomething">Home</a></li>
<li id="current" class="level1 item7 parent active"><a href="linktowebsites">Web Sites</a></li>
<li class="level1 item8 parent"><a href="linktoshoppincart">Shopping Carts</a></li>
<li class="level1 item10 parent"><a href="linktogoogleranking">Google Ranking</a></li>
</ul>
</div>
</div>
This is menu.css
Code:
/* menu */
div#menu {
position: relative;
padding: 0 0 0 34px;
margin: 0 auto 0 auto;
background: url(../images/menur_bg.gif) repeat-x; /*tab background image path*/
height: 46px;
list-style: none;
}
div#menu li {
float: left;
list-style: none;
}
div#menu li a {
float: left;
display: block;
color:#000;
text-decoration: none;
font-family: sans-serif;
font-size: 13px;
font-weight: bold;
padding:0 0 0 16px; /*Padding to accomodate left tab image. Do not change*/
height: 46px;
line-height: 46px;
text-align: center;
cursor: pointer;
list-style: none;
}
div#menu li a b {
float: left;
display: block;
padding: 0 24px 0 8px; /*Padding of menu items*/
}
div#menu li.current a, div#menu li a:hover{
color: #fff;
background: url(../images/menur_hover_left.gif) no-repeat; /*left tab image path*/
background-position: left;
}
div#menu li.current a b, div#menu li a:hover b{
color: #fff;
background: url(../images/menur_hover_right.gif) no-repeat right top; /*right tab image path*/
}
Bookmarks