HTML, CSS and anything else that deals with client side capabilities.
Moderator: General Moderators
oldnoisy
Forum Newbie
Posts: 12 Joined: Sat Sep 12, 2009 7:49 pm
Post
by oldnoisy » Mon Nov 09, 2009 7:14 pm
Hey all, the test page is here. Notice when you expand the "view more details" in IE8 to the point where it is supposed to push the page down, it doesn't! But it does in IE7/FF/Safari.
http://www.muchomungo.com/CrowdTwist/pa ... gions.html
http://www.muchomungo.com/CrowdTwist/re ... /style.css
Potentially relevant CSS:
Code: Select all
body {
margin: 0;
padding: 0;
min-height:0;
}
div.container {
width:100px;
}
div.outerBody {
width:100%;
min-height:0;
}
div.innerBody {
width:100%;
background-image:url("../../images/artist_center/body_bg.jpg");
background-repeat:repeat-x;
min-height:0px;
height:auto !important;
background-color:#cedce5;
text-align:center;
margin: 0;
position:absolute;
}
div.tabContent {
width:945px;
min-height:596px;
border:solid 1px #cccccc;
float:left;
position:relative;
margin-left:14px;
padding-bottom:14px;
margin-bottom:14px;
}
I'm using clearfix to make things work in IE7, but clearly there's some kind of other problem going on.
Thanks for any help!
Last edited by
oldnoisy on Tue Nov 10, 2009 8:13 pm, edited 2 times in total.
superdezign
DevNet Master
Posts: 4135 Joined: Sat Jan 20, 2007 11:06 pm
Post
by superdezign » Mon Nov 09, 2009 10:33 pm
You have not provided a page for us to look at in order to help you. We can't solve visual HTML/CSS problems without something to look at, especially when what we are missing is the HTML.
oldnoisy
Forum Newbie
Posts: 12 Joined: Sat Sep 12, 2009 7:49 pm
Post
by oldnoisy » Tue Nov 10, 2009 3:18 pm
fixed the link
oldnoisy
Forum Newbie
Posts: 12 Joined: Sat Sep 12, 2009 7:49 pm
Post
by oldnoisy » Thu Nov 12, 2009 4:46 pm
I added this and it works. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />