up vote 0 down vote favorite
share [g+] share [fb]

Im trying to fix a bug that only appears in internet explorer 6.

The problem is that the side panel moved below the footer of the page in Ie6.

Can anybody help?

http://www.perfectclaims.com/houses4cash/ie6.php

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

It is problem from <table> tags

You can delete "width" from last 2 tables

width="600"

and

width="731"

You can just delet this width from <table> tag

link|improve this answer
WOOOP THANK YOU SO MUCH!!!! Simple errors take the most time! Your a saint! Ian – Ian Jul 22 '09 at 12:39
Do you know of a way that I can strech the bottom bar across the page without causing the side panel to go back below the page? – Ian Jul 22 '09 at 13:00
Yes, you have to put bottom bart after <div id="content"> some textt </div>, <div id="content"> bla bla bla </div> <div id="footer">footer contet</div> – AlexC Jul 22 '09 at 13:09
feedback

Not sure if this will work, but try putting this below the sidebar:

<div class='clear'></div>

And use the following style for .clear:

.clear{clear:both}

Edit: The current clearing <div> you have needs to be inside the </div> you have just before it, I think.

link|improve this answer
no, it dont work! Thanks anyway! – Ian Jul 22 '09 at 12:30
feedback

Your Answer

 
or
required, but never shown