![]() Equipping You to Communicate Effectively | support CMN & share a library of 19K+ images, videos, etc Go Pro! |
![]() | ![]() |
| |||||||
| Website Coding Discussions PHP, MySQL, Java, Javascript, ASP, etc. |
![]() |
| | Thread Tools | Search this Thread | Rate Thread | Display Modes |
| ||||
| CSS link color issue I am using a contributed theme called Colourise on a Drupal 6 site (www.lamplightartists.com). The theme allows me to override the css using a custom.css file in the theme folder. 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. It works for visited, active, and hover, but not for just plain links... Code: 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;
}
__________________ ~Phil Graves Co-Owner ChurchMedia.net Owner Out of the Mud Multimedia Wanna read my blog? Follow me on Twitter |
| ||||
| Got the answer on Drupal.org... Quote:
__________________ ~Phil Graves Co-Owner ChurchMedia.net Owner Out of the Mud Multimedia Wanna read my blog? Follow me on Twitter |