Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Question about navigation menus Re: Question about navigation menus

#60436
EamonnMac
Member

I’m not sure which menu list it is, but I’m assuming it’s the ul#menu. Instead of

Code:
ul#menu a{
background-color:#ffcc00;
padding:3px 10px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}

ul#menu a:hover{
background-color:#f4d764;
}

try

Code:
ul#menu li{
display:inline;
}

ul#menu li a{
background-color:#ffcc00;
padding:3px 10px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}

ul#menu li a:hover{
background-color:#f4d764;
}

…should work.