corner image corner image
Thread: Overidding CSS
View Single Post
corner image corner image
  #6 (permalink)  
Old 25-07-2008, 23:33
nass nass is offline
Blog Entry: Customer Feedback!
A1 is my Second Home!
 
Join Date: Jul 2008
Location: Surrey
Posts: 203
Thanks: 25
Thanked 38 Times in 34 Posts
Try

Code:
<style type="text/css">
h2 a {color: #fff; font-family: Arial; font-weight:bold; font-size:19px; }
h2 a:hover { color: red; font-family: Arial;font-weight:bold; font-size:19px;}
</style>
or if you prefer 18px
Code:
<style type="text/css">
 h2 a {color: #fff; font-family: Arial; font-weight:bold; font-size:18px; }
 h2 a:hover { color: red; font-family: Arial;font-weight:bold; font-size:18px;}
 </style>
Not really strange - you'd missed out the a so it's inheriting it from elsewhere would be my guess
Reply With Quote
corner image corner image