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
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.
#colorbox {
overflow: visible;
}
$("#colorbox").css('overflow', 'visible');
Enjoy!