vForums Support > vForums :: Report a Bug :: Resolved Bugs :: > text links classes

text links classes - Posted By slip (slip) on 24th Mar 08 at 7:46pm
Because text links (eg post buttons etc.) have 2 classes - if a a:link and a:hover are added then only one class will get affected, text links with the other class (such as links on thread table and near forum footer text) do not get affected which looks odd.

Re: text links classes - Posted By Ross (admin) on 24th Mar 08 at 8:09pm
Code: CSS
 
  1. a {
  2.     color: #ff6600!important;
  3. }
  4. a:hover {
  5.     color: #336699!important;
  6. }
 


Using the !important argument should override any other colors.