On my site typobay.info there is two gray boxes for the header with writing in them, When you open it in Firefox they are sidebyside so it looks like one box, but in Internet explorer one box is under the other. Could this be because of the float? This is the .css for the boxes: } #logo{ float:left; width:190px; height:110px; background-color:#F7F7F7; border-left:solid 1px #999999; } #pagetitle{ position:relative; float:left; width:608px; height:110px; background-color:#F7F7F7; border-right:solid 1px #999999; } #title{ position:absolute; right:10px; bottom:0px; width:600px; Code (markup): Can anyone help me fix this? Thanks.
I am using Internet Explorer 7 and Firefox 2 on a 1280x1024 resolution and I see the page exactly the same in both browsers...
It's messed up in my IE too. Instead of 2 divs (grey boxes) you could make one big div. Something like this: .box { width: 750px; height: 150px; background-color: #F7F7F7; border-left: solid 1px #999999; border-right: solid 1px #999999;} .title { font: bold 20pt Verdana, serif; padding-left: 20px; color: #000000;} .subtitle { font: bold 17pt Verdana, serif; float: left; display: inline; padding-left: 140px; color: #CCCCCC;} Then use: <div class="box"> <div class="title">TypoBay</div> <div class="subtitle">Welcome to TypoBay!</div> </div> and you shouldn't get into trouble. Hope you get the hang of it. Kate