Tara
Tara

Reputation: 1598

Need bg to Fit Text

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

Answers (2)

Neil
Neil

Reputation: 55402

The white background that I think you're asking about is actually a 630px wide JPEG image.

Upvotes: 0

Pekka
Pekka

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

Related Questions