Forums

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

Home Forums CSS [Solved] Link Colors Re: [Solved] Link Colors

#74334
tingo
Participant

Thank you for your great help, I finally worked it out.

I found a list of nav css menu types here

http://css.maxdesign.com.au/listamatic/

I did it like this is in the end

Quote:
ul#navlist
{
margin-left: 0;
padding-left: 0;
white-space: nowrap;
}

#navlist li
{
display: inline;
list-style-type: none;
}

#navlist a { padding: 3px 10px; }

#navlist a:link, #navlist a:visited
{
color: #fff;
background-color: #036;
text-decoration: none;
}

#navlist a:hover
{
color: #fff;
background-color: #369;
text-decoration: none;
}