I'm having an issue that only occurs in IE7. Through a JavaScript function, I launch a colorbox. I define the height and width in the parameters.
IE7 seems to render the colorbox 40px shorter in height compared to other browsers. This results to a scrollbar being visible to accommodate the content which is now larger than the colorbox itself.
function LoadColorbox(url) {
jQuery.colorbox({ href: url, iframe: true, opacity: 0.7, height: 560, width: 878, top: 53 });
}
Anyone come across this before?