Quote Originally Posted by DivaVocals View Post
I can't figure out why it's adding a space where the home link used to be.. You can see the samething happening on my other test site too (http://divawebdzine.com/clients/silkythecap/) You'll notice that the footer seperator is the first thing in the footer line as if the now commented out Home link is still there preceeding the seperator.. Strange.. Especially when you consider that this does not occur if I comment out the home link in the header..
I'm afraid that you've misdiagnosed the problem. Take a look on your silkythecap site at the separator between the header links and then at the rogue separator in your footer ... look familiar?

This isn't coming from your HTML or the home link. That genuinely has gone. What is happening is that your header links are constructed differently from those in your footer. In the header they are each contained within an LI tag pair, but for the footer they are all contained within a single LI pair.

In your stylesheet you will find the following creating a separator to the left of each header and footer LI.
#navMain ul li, #navSupp ul li, #navCatTabs ul li {
border-left:2px solid;
color:#000000;
display:inline;
}
To negate the effects in your footer, simply add the following immediately afterwards
#navSupp ul li {border-left:none]