wrong content position in IE6

Comments

cfleek’s picture

A partial fix to this is to modify the style.css and add display:inline; at line 437 depending on your editor, you may hit enter and it becomes line 438. What I have learned thanks to the great people at the Seattle users group is that a lot of this is being caused by the content being too narrow for what is being placed in the object. With some work I have been able to get around a lot of the issues, but my forum is still jacked. Still working on it!
-Craig

interface-web design’s picture

To resolve this problem, please do the following:
Replace this class :-
body.sidebar-left #squeeze {
margin-left: 210px;*/
width:65%;
float:left;
}

with this class

body.sidebar-left #squeeze {
margin-left: 210px;*/
display:inline;
width:65%;
float:left;
}

nagygdev’s picture

The problem was not resolved. The elements got under each other only.

(But the theme is very beautiful though. ;-)

interface-web design’s picture

It seems you have not replaced the class completely. Please make sure that you replace:

this class

body.sidebar-left #squeeze {
margin-left: 210px;*/
width:65%;
float:left;
}

with this class

body.sidebar-left #squeeze {
margin-left: 210px;*/
display:inline;
width:65%;
float:left;
}

However, if you still face problems, kindly send us a screenshot of the page.

nagygdev’s picture

StatusFileSize
new61.65 KB

I would be glad better if it would turn out that I did something badly...

interface-web design’s picture

StatusFileSize
new187.8 KB

We suggest that you reinstall the theme on your system and use this updated one. We are sending you the theme as attachment. However, if you still face any problems, kindly send us the URL so that we can assist you further.

bilocate’s picture

Hello!

I'm having the same problem though i downloaded the file above! still it hasn't been fixed, please advice!

you can check the problem by viewing the site! on IE
http://www.kids-articles-better-parenting.co.cc/

--------------------------------------------------------------------------------

My bad! seems Google Adsense! banners pushed all the content under the menu! however once I've used the half-bannereverything seems to be OK!

interface-web design’s picture

We checked the site on IE at our end and have found that it's working fine. It seems your problem has been resolved.

goodeit’s picture

Thanks, this fix worked OK for me.

Is there any chance you could put out a new -dev or official release of this module to account for the changes made in your .zip above, plus any others you may have? I would be happy to help clean up the issue queue once a new release was posted addressing some of the posts.

Thanks again!

tofsjonas’s picture

Had the same problem in ie versions 6,7 and 8.
replacing
"float:left;"
with
"float:right;"
on line 440 in themes/aBeesParadice/style.css
seems to have done the trick.

Tested in Opera and Firefox, looks good there as well.

:)

---- edit -----
If you want to make it work with Swedish, you have to change
padding: 0 50px 0 0px;
to
padding: 0 10px 0 0px;
on line 473 as well :)

cmcintosh’s picture

Issue summary: View changes
Status: Active » Closed (outdated)