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 =]