I'm not sure what that means. What am I suppose to do then?
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.
June 7.2026 - NOW AVAILABLE - Twitch Base8 - Obsidian
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.
June 7.2026 - NOW AVAILABLE - Twitch Base8 - Obsidian
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.
June 7.2026 - NOW AVAILABLE - Twitch Base8 - Obsidian
AWESOME!!!! The links are all the proper color. EXCEPT for the EzPages. i am a\having a little trouble understaing the code I need to use to get these the right color. You said to use an a:visited, I am not sure the proper formula here.