Reputation: 1598
On this website as you can see, the white background doesn't fit the text (content)... How can I get it to do so? This is the CSS... But it doesn't seem to be responding:
.entry {
margin:0 0;
padding: 0px 5px 5px 5px;
width: 680px;
}
Thanks - Tara
Upvotes: 0
Views: 37
Reputation: 55402
The white background that I think you're asking about is actually a 630px wide JPEG image.
Upvotes: 0
Reputation: 449525
Your background is an image:
background: url(images/single.jpg) repeat-y;
background images can't scale.
Remove the background image, and give the single
class these additional rules:
overflow: auto;
background-color: white;
Upvotes: 1