Hey JF...not sure if you still need this but I gave it a go. I doubt this is the only way to do this but it's how I'd do it.
In the style sheet -
Try this for the coloured background:
Code:
.nav {
width : 100%;
background: #62929E;
display: block;
border : 4px solid #01032A;
}
Add this if you want it to highlight:
Code:
.nav: hover {
width : 100%;
background : #FFFFFF;
color: #62929E;
}
And in the html -
Add this around your links:
Code:
<a href="link.php" class="nav">Link</a>
Hope that was what you were looking for
