The forums ran from 2008-2020 and are now closed and viewable here as an archive.
Home › Forums › CSS › How can i make a facebook style on top
in the home page. i want to do this: http://img2.tapuz.co.il/forums/1_174150080.jpg
this is what i did: http://img2.tapuz.co.il/forums/1_174154416.jpg
#box{ background-color: #3b5998; padding: 50px; }
how can i do like in the facebook ?
You probably just need to reset the margin on the body to zero. In most browsers, the body has a little margin applied to it by default, and that’s keeping your blue box from touching the edge of the window. body { margin: 0;}
Thank you :)