• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Done! Delete/Lock

No, I see what you mean now. After realizing what you meant 5 different methods came to mind about solving the problem but after looking over the HTML it seems you've covered them, but I'll keep looking.
 
In your first table tag in header put vspace="0" that fixes it:

<BODY bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" style="margin-top: 0px;">
<TABLE width="775" border="0" align="center" cellspacing="0" cellpadding="0" valign="top" vspace="0">
<tr>
<th colspan="2" align="center" valign="top" scope="col">
<object classid="clsid😀27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="775" height="94" vspace="0">
<param name="movie" value="swf/header.swf">
<PARAM NAME="menu" VALUE="false">
<param name="quality" value="high">
<embed src="swf/header.swf" width="775" height="94" vspace="0" quality="high" menu="false" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>
</object>
</th>
</tr>
 
I'll try your suggestion.

Accrued, put exactly what you did to do it. I'm going to start at the top and work down.
 
Originally posted by: Lazy8s
In your first table tag in header put vspace="0" that fixes it:

<BODY bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" style="margin-top: 0px;">
<TABLE width="775" border="0" align="center" cellspacing="0" cellpadding="0" valign="top" vspace="0">
<tr>
<th colspan="2" align="center" valign="top" scope="col">
<object classid="clsid😀27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="775" height="94" vspace="0">
<param name="movie" value="swf/header.swf">
<PARAM NAME="menu" VALUE="false">
<param name="quality" value="high">
<embed src="swf/header.swf" width="775" height="94" vspace="0" quality="high" menu="false" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>
</object>
</th>
</tr>

I updated the page. No good.
 
I see the problem.

The problem is gone when you remove the javascript:
<SCRIPT LANGUAGE=javascript src="http://www.jastram.com/js/awstats_misc_tracker.js" type="text/javascript"></script>

More specifically, this line within the javascript:

<!--
EXs=screen;EXw=EXs.width;navigator.appName!="Netscape"?
EXb=EXs.colorDepth:EXb=EXs.pixelDepth;//-->

I think it can be solved by editing like so (as a single line):

<!--//EXs=screen;EXw=EXs.width;navigator.appName!="Netscape"?EXb=EXs.colorDepth:EXb=EXs.pixelDepth;//-->
 
It's not an object height vspace thing, if you make the page background black, you can see that it's the body of the page that's making the space.

I have a way to fix it, but it requires that the tag be ignored if used by anything other than Internet Explorer, and I don't remember how to do that.
 
Done. It involved the Jscript file, and I just moved it to the footer.

Need your PP address ghostman!

Simon
 
Hmm. I noticed a problem here too. I think commenting like so actually kills that line of code, so it's not much of a solution.

Also, js files are notorious for sticking in your browser cache. When testing with it, you might want to rename it every time.
 
Back
Top