treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Internet Explorer 8 Squished DIV

  • I'm not too sure what exactly is going on but when viewing my board in IE8, I get something like this:
    http://i192.photobucket.com/albums/z133/nintendonerds/WhatDoIDo.jpg

    I've looked around in Firebug, and even tried changing a few things but no luck.

    Any help would be appreciated. I've tried getting in contact with the author of the skin but he's not available. I have a member who is unable to use anything other than Internet Explorer 8.

    My board index is located at: http://www.nintendonerds.com/forums
  • Hi,

    I have check your code there is some problem with .ipsLayout_content.

    If you have developer toolbar then inspect this class then you can find there is width:9.5% applied on this, and this will apply through any JS.

    So in your html page you have applied following code:
    <!--[if lte IE 8]>
    <style type='text/css'>
    .ipsList_inline > li { display: inline; }
    .ipb_table { table-layout: fixed; }
    .ipsLayout_content { width: 9.5%; }
    </style>
    <![endif]-->


    so please remove ".ipsLayout_content { width: 9.5%; }" from above code and then its working fine.

    let me know if you have any queries.

    Thanks
  • Thank you so much, Ketan! That's what it was. Man, that was driving me crazy. I for sure thought it was in a CSS file. Thanks for the quick work.
  • No Worries :)