menu - Joomla! Forum - community, help and support
i activated design photoshop css (my css grade1 or grade 0 level) used list navigation bar. when implement in joomla,
have use topmenu module. problem cannot put style made in css module. tried using extension-menumanager-advance parameter-menu class suffix still doesnt work. on right track?
could link me site or page can me costumize template properly. made of several boxes... going crazy now.
take me 5 years figure out unless experts here me...
mabagtitakon!
have use topmenu module. problem cannot put style made in css module. tried using extension-menumanager-advance parameter-menu class suffix still doesnt work. on right track?
could link me site or page can me costumize template properly. made of several boxes... going crazy now.

mabagtitakon!
if want style menu, need put module menu go in div. let's module position in index.php menu going be, called "top". code might this:
then can style menu in css using div declared in index.php page. this:
code: select all
<div id="suckernav"><jdoc:include type="modules" name="top" style="xhtml" /></div>
then can style menu in css using div declared in index.php page. this:
code: select all
#suckernav a:link,
#suckernav a:visited {
color: #654325;
}
#suckernav li a:hover {
color: #83693a;
}
#suckernav a.topdaddy,
#suckernav li.active a.topdaddy {
color: #654325;
}
#suckernav li li {
background: #d1c39c;
border-bottom:#fff 1px solid;
border-left:#fff 2px solid;
border-right:#fff 2px solid;
border-top:#fff 1px solid;
}
#suckernav li li a:active {
color:#fff;
}
#suckernav ul li a:hover,
#suckernav ul li ul li a:hover,
#suckernav ul li ul li ul li a:hover {
background: url(../images/indie/indiebullet.png) no-repeat left center;
}
Comments
Post a Comment