Jump to content

I found problems using IE 6


Recommended Posts

Well, using CSS you have 4 parts:

[] [__] []

BodyContainer

  Left Menu

  Center Content

  Right Menu

If the floats aren't contained correctly, then a line break will be inserted.

I think your problem comes from the fact that _something_ on your right menu is too wide....

Link to comment
Share on other sites

  • 2 weeks later...

You have to play with the width and the margins of all the elements.

On IE6, when one element does not fit into another it goes down.

So you can reduce margins of the central block for instance:

 

#center {

        width: 540px;

        margin-left: 14px;

        margin-right: 14px;

        float: left;

}

 

Then you'll have to patch the css code for 3 or 4 elements, and it will be ok for IE6.

Link to comment
Share on other sites

Sorry men but we are not gonna help you to fix the "old" default theme because we are working on the new one.

 

It will be avalaible in next release (0.9.8 ), and it will be 100% functional with all browsers and all versions.

 

So I can't help you (lots of stuff on new theme). Just be patient for next release :)

 

no one use IE 6, only crazy people  ;D

Link to comment
Share on other sites

I did some searching on the forums under ie6 and found an item that described a fix that would work to have the right container in the correct position when viewed with ie6.

 

in the style sheet in themes the following change was made

 

#center {

width: 539px;

margin-left: 10px;

margin-right: 10px;

float: left;

}

 

Changes found on the style sheet at www.smagmere.dk  This was found using the search key ie6 on the forums. There may be others but I found this one first.

 

Kudos to the member who posted this modification.

 

Hope this is useful

 

Link to comment
Share on other sites

×
×
  • Create New...