Help! I have a project due by midnight tonight. It's a 3 page website done in xhtml and css. There is a header and footer each 760 px in width. I've set margins for my paragraph and header tags so that the text lines up with the text on the header. My only problem is that I end up with this gap on the right side of the page that goes past the end of the header/footer.
Quote:
body {background-color: #FCF8F1;
margin:10px;}
p {margin-left: 40px;
margin-right: 260px;
font-family: georgia, verdana;
font-size: 14px;
color: #0C1A2F;}
h2 {margin-left: 40px;
font-family: georgia, verdana;
color: #32507E;}
a {color: #0C1A2F;}
a:visited {color: 32507E;}
a:hover {color: #B3D1FE;}
a:active {color: #D9E8FE;}
img {margin: 10px;}
|
that's my css so far. Is there anything I can add to format nicer?