some help with IE compatability...

A2597

New member
because a buisness site must maintain cross browser functionality afterall...

OK, the design is this:
http://www.geeks2go.biz/temp/geeksite3.png

Now, the background is to remain static, in the same proportions (Top bar is 90 pixels, bottom bar is 75 pixels)

The content scrolls however.

The problem? How to achive this? Using DIV positioning seems like a good idea...but well...

http://www.geeks2go.biz/new/template.htm

works in firefox, breaks in IE.

Anyone have ideas?
 
try doing the basic design in frontpage, and then see what is different, and copy that code.
 
MAYBE
Line 77:
<div style="text-align:justify; padding:3px; margin-top:3px; margin-bottom:5px; border-top:1px solid #D3D3D3; width="5">...
There's no ending quote for your style tag.
Code:
<div style="text-align:justify; padding:3px; margin-top:3px; margin-bottom:5px; border-top:1px solid #D3D3D[COLOR=Black]3;" width="5"[/COLOR]>

IE7 is reading that as part of the code, and not displaying it, same with the 3 line breaks. Firefox I smrt (I guess) and fixing that...
 
Last edited:
Back
Top