PrincessSammy
03-18-2004, 09:46 PM
Is there anyway to stop the different DIVs from jumbling together when someone resizes the size of their browser window? RIght now everything just piles up on eachother.
Anyone know how to fix them in place?
Thanks
Sammy
MaGiCSuN
03-18-2004, 10:31 PM
can we see the page?
if you absolute position everything it stays on it's place, no matter how much you resize your window :)
Love,
Mirna
PrincessSammy
03-18-2004, 10:34 PM
oh yeah, http://www.thegaminggalaxy.com/blarg.html
MaGiCSuN
03-18-2004, 10:40 PM
you have in your head table this:
align="center"
but in your #header css you have :
#header {
position: absolute;
background-image:url(/images/galaxy.gif);
margin: 20px;
padding: 0px;
height: 100px;
}
so you have to choose,OR absolute positioning and fill in a top and left coordinate. Or choose for the align part :)
If you use both, things will overlap, because absolute positioning is exact and align="center" is not.
Love,
Mirna
PrincessSammy
03-18-2004, 10:47 PM
I've taken it out, and it still bunchs together. Am I missing another one?
Sammy
MaGiCSuN
03-18-2004, 10:49 PM
like i said, you should fill in a top and left coordinate for the absolute positioning.
also this part:
#footer {
position: absolute;
top: 620 px;
margain: 40px;
padding: 20px;
height:float ;
width:float;
}
margain should be margin :) maybe that helps
love,
Mirna
PrincessSammy
03-18-2004, 10:56 PM
So for the top and left postions, even if I want them to be zero, I should fill in a number so they don't merge? Because I have them all set to zero right now and their still merging.
Sorry I guess I'm just not getting it ^_^
Sammy