View Full Version : Help me fix this?
bradley
March 28th, 2007, 01:44 PM
I now own trendyglitters.com
In firefox I see it fine, yet in IE the main frame is way down. Any idea why it does that?
alltheRAGE
March 28th, 2007, 01:52 PM
EDIT: Oh scrap that, just seen your borders are on the top and bottom so it shouldn't affect the width, so that probably wont work :p
But I noticed that you need to change this:
body {
background-image: url('star.png');
background-repeat: repeat;
background-attachment:fixed
margin: 0;
text-align: center;
}
body
{
background-image:
url("star.png");
background-repeat:
repeat;
background-attachment:
fixed
}
To just this:
body {
background-image: url('star.png');
background-repeat: repeat;
background-attachment:fixed;
margin: 0;
text-align: center;
}
Oh and another thing!
You could add a footer div to clear the 2 middle divs. I had trouble with my layout and this sorted it.
Add <div id="footer"></div> just before you close the container div, then add this to your css:
#footer {
clear: both;
}
bradley
March 28th, 2007, 02:12 PM
Tried all that, didn't work. :(
Kasami2k4
March 28th, 2007, 02:22 PM
Hm, well, I didnt look too much because Im super busy since Im starting from scratch butttttttttttttttttttttttt
It looks like your frames are a TINCY bit bigger than your pagewidth. Just shrink them by a few px and maybe that'll fix the problem.
alltheRAGE
March 28th, 2007, 02:30 PM
I've just tested it out, and it's because of your cbox, so maybe make it a few more pixels smaller in width
Change your cbox code to this:
<!-- BEGIN CBOX - http://www.cbox.ws -->
<div align="center" id="cboxdiv">
<iframe frameborder="0" width="190" height="105" src="http://www4.cbox.ws/box/?boxid=3010089&boxtag=3888&sec=main" marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmain" style="border:#FFFFFF 1px solid;" id="cboxmain"></iframe><br/>
<iframe frameborder="0" width="190" height="75" src="http://www4.cbox.ws/box/?boxid=3010089&boxtag=3888&sec=form" marginheight="2" marginwidth="2" scrolling="no" allowtransparency="yes" name="cboxform" style="border:#FFFFFF 1px solid;border-top:0px" id="cboxform"></iframe>
</div>
<!-- END CBOX -->
Kasami2k4
March 28th, 2007, 02:35 PM
Dont forget to check in IE6 rage, since 50% of people still use it. IE7 fixedmost of those bugs
bradley
March 28th, 2007, 02:36 PM
Yay it worked. Thanks so much!
vulcanstudios
March 28th, 2007, 04:24 PM
If your ever having design problems in IE that work fine in firefox look into hacks such as the redraw box hack and such. I've spent hours trying to get something to work on my site and it would get pushed to the bottom. Turns out IE 6 and 5 in quirks mode doubles margins so I had to apply a hack.
So definately don't waste hours without looking into hacks.
vBulletin® v3.7.1, Copyright ©2000-2009, Jelsoft Enterprises Ltd.