Forums

Join
bbPress Support ForumsThemesinfobox ie/firefox difference

Info

Tags

infobox ie/firefox difference

  1. As you can see here

    http://www.doublepeace.se/forum/topic.php?id=11&page&replies=1

    In Firefox the infobox's top and bottom borders are outside the infobox, whereas in IE the bottom border is just below the topic title. How can I get IE to display this correctly?

  2. I think that IE7 does not recognise the <br clear="all"> as it should - kakumei was designed pre-IE7, I think? Try playing around with the HTML; can't test it myself unfortunately since the problem is in IE. Maybe <br style="clear: both;"/> will work?

  3. This problem has to do with IE7 needing a "min-height" value in the stylesheet to expand the box whose border is the bottom line. Adding this to the css for the ".infobox"-rule will fix the problem:

    height:auto!important;
    height:1px;
    min-height:1px;

    The adding of "height:auto!important;" and "height:1px;t" will fix the same problem i IE6.

  4. You must log in to post.