Okay
  Public Ticket #479413
IE8 Issues
Closed

Comments

  • Joe started the conversation

    Hi,

    I am having issues in IE8, I understand the theme is not compatible with IE8 however I really would appreciate some help.

    It is looking OK just it seems the columns do not float, they site underneath each other. Could you point me in the right direction? A good example of this is I have a page with 2 columns, one text (left) and one image (right). In IE8 the image sites underneath the text... Again if I have 3 columns via the visual composer, 2 sit on the same line as should the last sits underneath. Any help would be appreciated.


    Many thanks,

    Joe

  • jeroen replied

    Hi,

    I know old versions of IE have a different interpretation of width and padding. It handles the width excluding the padding instead of including. The result is that e.g. columns don\'t fit horizontally and will be placed beneath.

    Example:

    Normal:

    width: 200px

    padding left and right: 10px

    real width: 200px

    old IE:

    widht: 200px

    padding left and right: 10px

    real width: 220px

    solution: width: 180px

    Make sure to use this:

    width:200px;

    <!--[if IE 8]>

    width:180px

    <![endif]-->