To answer your question directly, add a right margin to your h4 tags in your
style sheet:
H4 {margin-right: 10px;}
To answer your question with a suggestion, don't use h4's for your nav
links. Rather, use an unordered list to gain better control over their
display and establish better semantics in your markup:
<ul>
<li>link 1</li>
<li>link2</li>
</ul>
For a great example, read A List Apart's "Taming Lists" at
http://www.alistapart.com/articles/taminglists/
Will Chatham
--------oOo--------
www.willchatham.com
-------------------
> Can someone take a look at this page:
> http://vikberg.net/IAMU
>
> and suggest how I best separate the blue links from the
> white content
> area so it doesn't 'hog' the line?
>
> TIA
> ~Veine
*****************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
*****************************************************