Closed (fixed)
Project:
Colourise
Version:
6.x-2.0
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
13 Mar 2009 at 15:39 UTC
Updated:
13 Mar 2009 at 16:14 UTC
I need to override the link colors, as blue and purple don't show up so well against the back background.I have added the following syntax in the custom.css file and activated it in the theme settings. It works for visited, active, and hover, but not for just plain links...
<style type="text/css">
a:link {
color: #88bb30;
text-decoration: none;
}
a:visited {
color: #f5be61;
text-decoration: none;
}
a:hover {
color: #ffffff;
text-decoration: underline;
}
a:active {
color: #88bb30;
text-decoration: none;
}
</style> Ideas?
Comments
Comment #1
Sungsit commentedtry
One thing,
<style type="text/css">and</style>tag should not be included in any external CSS files.Comment #2
skstarkiller commentedGenius... THANKS!!!
Comment #3
skstarkiller commented