I'm having problems doing some simple css/html and would appreciate help please:
I have set a link style [1] which works perfectly, but now I want to put linked text in styled text and therefore create a second link style on the same page.
Link style [1] CSS (This works fine):
a {
color:#FFFFFF;
font-size:12px;
padding-left:10px;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
text-decoration: none;
}
Link style [2] HTML/text:
<h4>Copyright 2009. For more information please contact: <a href="#" target="_blank">www.a-website.com</a></h4>
h4 {
color: #666666;
font-style: normal;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}
So how would I create a link style that replicates the size and font style & family of h4, but where the underline and color changes on mouse-over?



Reply With Quote
Bookmarks