Log in

View Full Version : Heading Links CSS



kondwanii
09-25-2007, 05:09 PM
I'm trying to figure out how to add a link inside a Heading in CSS stylesheet. I want the heading anchor link to be in different size from the main body link. Can someone please let me know if possible can be done and also how to code it in a stylesheet ?

This is part of my code right now

H1 {
font-family: Times New Roman;
color: #000033;
font-size : 15pt;
text-decoration: none;


}

Veronica
09-25-2007, 08:57 PM
You would just add to your stylesheet the appropriate info for h1 a:link. For example,

h1 a:link { color: green;
font-size:40pt;}
h1 a:visited {text-decoration: none;
color: green;
font-size:40pt;}
h1 a:active {text-decoration: none;
color: blue;
font-size:40pt;}
h1 a:hover {text-decoration: underline;
color: red;
font-size:40pt;}