give your header and your main area ids, then define your colors in your style sheet - like so:
Code:
#main a:link {
color: blue;
background-color: white
}
#header a:link {
color: #EBDFBD;
background-color: black
}
the HTML would be like this :
Code:
<div id="header"><a href="link.html">Header Link</a></div>
<div id="main"><a href="link.html">Main Link</a></div>
Last edited by funkdaddu; 07-30-2006 at 05:13 PM..
|