Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
Argh.... Hit the reload on the wrong tab :-(
ok, here I go again.
I've just saved your apge on my comp and tried a bit.
You, my friend, are stuck on an ie nightmare...
It seems that your problem is that IE render first the table, and then only the included js.
Might be because it's an external source, I don't know, the fact is that it works ok on firefox.
No luck trying to use a table in the generated js, but with a div + css, you might get out of this.
Look what I've placed in maintop.js:
Code:
document.writeln('<div style="width:800px;">');
document.writeln('<script type="text/javascript"><!--');
document.writeln('google_ad_client = "pub-2350184081160075";');
document.writeln('google_ad_width = 728;');
document.writeln('google_ad_height = 90;');
document.writeln('google_ad_format = "728x90_as";');
document.writeln('google_ad_type = "text_image";');
document.writeln('google_ad_channel ="7100825086";');
document.writeln('google_color_border = "FFDDDD";');
document.writeln('google_color_bg = "FFDDDD";');
document.writeln('google_color_link = "000000";');
document.writeln('google_color_url = "000000";');
document.writeln('google_color_text = "000000";');
document.writeln('//--></script>');
document.writeln('<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>');
document.writeln('</div>');
Your main table width is 777, so I put 800 pixel width on the container div, this stretching your table to 800.
This looks good in both FF and IE.
__________________
Only a biker knows why a dog sticks his head out the window.
|