Alright, I've in the process of learning CSS, but I've hit tons of barricades along the way.
This is my latest:
Code:
#header{
background-image:url(images/blackwhite.jpg);
background-repeat:repeat-x;
height:50px;
margin-top:-20px;
margin-left:-20px;
margin-right:-20px
}
#header p{
margin-top:20px
}
#content{
margin:auto;
}
#footer{
margin:auto;
}
With that, I get my top image to completely fill up the top and sides, but there is a x-scrollbar at the bottom which is annoying. When I add "overflow-x:hidden" it just reverts back to how it was before (without the
Code:
height:50px;
margin-top:-20px;
margin-left:-20px;
margin-right:-20px
)
So my question is: How can I remove the x scrollbar without messing up my page?
edit: OH also, if you'd like to help me on any other questions about CSS, please PM me either your AIM or MSN messenger address, so I can add you! Thanks!
Last edited by Madman340; 11-05-2008 at 09:14 PM..
|