View Single Post
  #3 (permalink)  
Old May 12th, 2006, 15:11
Dan Williamson Dan Williamson is offline
Junior Member
Join Date: May 2006
Location: Manchester. UK
Age: 17
Posts: 37
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Help with images

Your menu would be the easiest to change as you would just have it something like:

HTML: Select all
.navigation{
        width: width here;
        height: height here;
        font-family: the font;
        font-size: the size;
        border: 1px solid #000000;
        color: #ffffff;
}

a:link {color: #your hexadecimal color code} 
a:hover {color: #your hexadecimal color code}
Now all you could need to do is the basic HTML for it.

HTML: Select all
<div class="navigation">
 <a href="url.php">Home</p>
</div>
If the colour is set the same in the CSS class then it will work =]
Reply With Quote