Forums

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

Home Forums CSS CSS Menu Issue Re: CSS Menu Issue

#60345
apostrophe
Participant

If you don’t want that lighter orange on the menu why are you using it as a background image?

I’ve just done a quick fix and replaced that with the content background:

Code:
#menu {
background:#666666 url(images/content.jpg) repeat scroll 0 0;
height:40px;
line-height:40px;
margin-top:-22px;
padding:0 10px;
}

and I gave the first menu item a class of home and added a bit of extra padding

Code:
#menu li.home a {
padding:0 30px 0 40px;
}