When I hide this colour, your left nav links turn blue...
a:link, #navEZPagesTOC ul li a {
/* color: rgb(255, 255, 255); */
}
Your a:hover is pink.
When I hide this colour, your left nav links turn blue...
a:link, #navEZPagesTOC ul li a {
/* color: rgb(255, 255, 255); */
}
Your a:hover is pink.
Twitch.
https://www.twitchtoo.com Do you work for free? Please donate.
Twitch Base8 - Obsidian - This, is what's new.
I'm not sure what that means. What am I suppose to do then?
It looks like you are using the classic template css:
includes/templates/classic/css/stylesheet.css
around line 21
change this:
a:link, #navEZPagesTOC ul li a {
color: #ffffff;
}
to this:
a:link, #navEZPagesTOC ul li a {
color: #000;
}
Twitch.
https://www.twitchtoo.com Do you work for free? Please donate.
Twitch Base8 - Obsidian - This, is what's new.
Okay...I tried that and it does not appear to be the problem. I tried it with and without the text decoration and have refreshed and cleared my cache. The hover should in face be pink, the links in the brown areas should be white and the links in the white areas should be brown.
Do you think I would be better to start with a fresh css file?
Split the site wide a links from the navigation ez pages in your CSS...
a:link {
color: #663300;
}
#navEZPagesTOC ul li a {
color: #FFFFFF;
}
Twitch.
https://www.twitchtoo.com Do you work for free? Please donate.
Twitch Base8 - Obsidian - This, is what's new.
I did that and I appreciate you showing me the split but I am still seeing purple links. Are you?
It's 1am... I'm seeing snow falling... ;)
Your a:visited links are remmed out:
change this...
a:visited {
/*color: #724328;*/
text-decoration: none;
}
to this...
a:visited {
color: #724328;
text-decoration: none;
}
Then add a:visited to the ez pages with the colour of your choice.
Twitch.
https://www.twitchtoo.com Do you work for free? Please donate.
Twitch Base8 - Obsidian - This, is what's new.