You should re-word your directions, on this part here:
Quote:
Inside "header" section, above the first line of code, add code listed under:
|
The first part you're in the CSS section, so I assumed when you said the "header" section you meant in the css box in the header section and not the "template". You should have it read the "inside the header
template" for future people who might assume this.
Also I wanted the links to match the forums so in the menu.htm were it's says"
Code:
a:hover{
color:red;
using the word for the colors doesn't always show the right color in some browsers so I recommend using the hex code. And to get the hover, regular links and visited links to match my forums I added two more codes to it like this:
Code:
a:link{
color:#e0b23a;
}
a:hover{
color:#ffffff;
}
a:visited{
color:#e0b23a;
}
Obviously change the hex code to match your forums links color scheme.
Well, I'm missing something because the hover isn't working, it just stays the visited color. If I remove the visited one it works, but then it's back the default visited color.