O.K. I managed to make some headway.
First I changed <div id="navMainWrapper">
to <div id="MynavMain">
Then deleted <div class="navMainSearch center">
Then I added to the stylesheet in the beginning:
a:link, #MynavMain ul li a {
color: #FFFFFF;
text-decoration: none;
}
a:visited, #MynavMain ul li a {
color: #FFFFFF;
text-decoration: none;
}
a:active #MynavMain ul li a {
color: #FFFFFF;
}
Then added after /*navagation*/
#MynavMain {
background-color: #000000;
background-image: url(../images/tile_back.gif);
padding: 0.5em 0.2em;
text-align: center;
font-weight: bold;
color: #FFFFFF;
height: 1%;
}
This added my background gif and centered the menu.
Now my menu text is white and my hover is red, but I'm unable to influence the visited color just yet. You can see the center one is my attempt.
How can I change the VISITED color for just this menu??



