Site Height

admin

Administrator
Staff member
Hello

I would like to set my site to 550px in height.

This is what I have and isn't working: any other ideas?

body {
background: url("images/bp.jpg") repeat top left;
height: 550px;
color: #333;
font-family: verdana, serif;
font-size: 0.7em;
margin: 0;
padding: 0px 0;
}

Thankstry putting all in a div with - overflow:scrollcan you please elaborate with a more hands on example? I am so new to CSS, I didn't quite understand your response.

ThanksInstead of body as a selector, use #wrapper and add overflow:auto; to the style. Then just inside the body put a <div id="wrapper">. Oh, and verdana, serif doesn't make sense because Verdana is a sans-serif font.
 
Back
Top