Maqueo
08-27-2008, 03:33 AM
I've been wrestling with the content positioning on these two pages for IE6:
http://www.ayurveda-nama.org/volunteering.php
http://www.ayurveda-nama.org/pro_membership.php
Any tips or ideas?
Jay August
08-27-2008, 06:22 AM
without looking in IE6: you're suffering from the double margin bug that IE6 has with floated elements. find your floated elements in your stylesheet, and add within:
display: inline;
that clears the double margin bug for you.
Maqueo
08-27-2008, 09:38 AM
without looking in IE6: you're suffering from the double margin bug that IE6 has with floated elements. find your floated elements in your stylesheet, and add within:
display: inline;
that clears the double margin bug for you.
I thought that was the problem at first at well, but it doesn't resolve it. The problem doesn't show up on regular pages, and there's no extra floats on these two pages :mad:
Groetjes :)
Jay August
08-27-2008, 01:45 PM
have you tried to make div #main a tad smaller for IE6? it's a dirty hack, but usually does the trick:
#main {
background:#fff;
float:right;
width:716px;
_width:710px;
}
Groetjes! :)
Maqueo
08-27-2008, 09:11 PM
No, still doesn't solve the problem. I'll keep trying this evening...
jerett
08-27-2008, 09:39 PM
I currently don't have IE6 loaded up - can you possibly throw up some screen shots of the issues you are having.
Maqueo
08-27-2008, 10:49 PM
I currently don't have IE6 loaded up - can you possibly throw up some screen shots of the issues you are having.
Here's where I'm at right now. The problem doesn't show up on any other pages than those two...
foobic
08-28-2008, 04:08 AM
If amygdela's suggestion doesn't work and it's specific to certain pages then you probably have something in the content section that IE6 thinks is taking up more than the specified 716 width. You could try using overflow:hidden on #main or just increase the width of #wrap a bit.
Maqueo
08-28-2008, 09:32 AM
If amygdela's suggestion doesn't work and it's specific to certain pages then you probably have something in the content section that IE6 thinks is taking up more than the specified 716 width. You could try using overflow:hidden on #main or just increase the width of #wrap a bit.
Aha! overflow:hidden did the trick. I will review the template when I get home to see if there;s anything too wide in there, but at least is displaying as it should now :)
Thank you guys a lot for your help!