- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
If you have recently upgraded to Dublin, you may have encountered the problem of wonky-sized iframes in IE9. This is because the CMS is no longer rendering the height of your iframes properly. Not an optical illusion - you'll see things like your iframes briefly appearing and then reducing in height.
Yes, very odd. It's the property added in the Dublin release — when height: auto; is not present in the CSS, the main content frame is automatically set to 10px when the page is viewed in IE9.
If you've made customizations to your CMS and modified the style sheet, then this is likely what's causing your problem when upgrading. The good new is, this is no longer an issue in Dublin Patch 2, so upgrade if you can. If this is not an option, just add height: auto; in the BODY tag of your Base CSS style sheet:
BODY {
margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
padding:2px;
border: 2x;
color: #666666
height: auto;
}
For more information, see:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.