Click to See Complete Forum and Search --> : Site Height


comptech520
02-03-2006, 06:05 AM
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;
}

Thanks

jong
02-03-2006, 06:12 AM
try putting all in a div with - overflow:scroll

comptech520
02-03-2006, 06:15 AM
can you please elaborate with a more hands on example? I am so new to CSS, I didn't quite understand your response.

Thanks

ray326
02-03-2006, 12:49 PM
Instead 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.