Search code examples
jqueryinternet-explorer-8internet-explorer-7colorbox

colorbox css problem in ie


i have a strange problem only in IE when i initialize the colorbox .... can anyone hintout how to fix it?

in mozilla and chrome all is ok

to see it just search for an agent in any country and select any option from 3 demo values


Solution

  • Your widths are showing up different in IE for some reason, which is causing them to be cut off.

    To fix this, you need to allow overflowing content on your colorbox div. You can either do it in CSS or JQuery.

    CSS

    #colorbox {
         overflow: visible;
    }
    

    JQuery

    $("#colorbox").css('overflow', 'visible');
    

    Enjoy!