I am not sure what white space you were referring to. However, if it's that white space directly below the main menu, this might be it:
</table>
<br>
<br> <script language="JavaScript" type="text/javascript">
Var sPageName = '<%=Request.ServerVariables("SCRIPT_NAME")%>';
sPageName = sPageName.substr(sPageName.lastIndexOf('/')
There are two line breaks above the JavaScript. Remove those and your white space is gone.
I notice you use a lot of nested tables in your site. You may not need all of them, as they tend to bloat the page, making it slower to load and more difficult to maintain. I know I haven't given the best example by using tables for layout in the book, but 7 tables for this design may be a bit too much. You could bring it down to 0 which for you may be an impossible task at this stage, but it would be easy to strip at least four of them.
A simple table like this:
<table>
<tr>
<td>
header here
</td>
</tr>
<tr>
<td>
Main content here
</td>
</tr>
<tr>
<td>
Footer here
</td>
</tr>
</table>
would really make the page easier to maintain and understand.
Then you could use another nested table for the Logo animation and maybe another for the Main Menu.
That could also minimize the need for stuff like old skool spacer images....
If you have more or other white space issues, please do let me know.
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
While typing this post, I was listening to:
Invisible Kid by
Metallica (Track 5 from the album:
St.Anger)
What's This?