OK, in your /v/vspfiles/templates/90/css/Template.css file as applied to the /Default.asp page you have:
Code:
#header h1{
float:left;
font-size:1.5em;
height:47px;
padding-left:14px;
padding-top:17px;
text-align:left;
width:400px;
}
#display_homepage_title a{
text-indent:-99999px;
display:block;
width:300px;
height:40px;
text-align:left;
}
That float is never cleared, so it's messing up the alignment of the stuff below it in Firefox. IE and some others are either clearing the float automatically, or there is something else about that element that takes it out of the flow of the page for them. Now, the element selected by:
Code:
#display_homepage_title a
is something like:
HTML Code:
<a href="http://txcrp.utxpw.servertrust.com/default.asp" title="store.glidegear.com">store.glidegear.com</a>
And is the only content of the #header h1 element, of which there is only one on the page. But since you have set its (the link's):
Code:
text-indent:-99999px;
it cannot be seen. It's so far off to the left that it is beyond the left margin of the page.
Given all of that, at least for this page, it would be best to simply set:
Code:
#header h1{
display: none;
}
Or simply remove:
HTML Code:
<h1 id="display_homepage_title" class="colors_homepage_title"><a href="http://txcrp.utxpw.servertrust.com/default.asp" title="store.glidegear.com">store.glidegear.com</a></h1>
from the page's markup.
Either way, it won't affect IE, but will fix Firefox. If you want to 'bring back' the link later, you will have to clear the float somehow (probably with the content division) and account for a gap that will probably create between the header div and the content div (probably by decreasing the height of the H1 tag and/or giving it a 0 bottom margin), but that can probably be worked out if and when that time comes.
Bookmarks