Background problem |
Background problem |
![]()
Post
#1
|
|
Newbie ![]() Group: Member Posts: 2 Joined: Apr 2007 Member No: 515,077 ![]() |
At some point last night, without me having changed anything in my style definitions, an ugly border appeared all around my livejournal page. The colour of the border is the colour I had defined for background colour, but I had been using a background image which covered the entire page. It somehow seems to have shrunk, though, and this, I repeat, without me having changed anything. I've had the same layout settings for years. The background image is set to "repeat", "center" and "scrool", so in theory it should repeat itself over the entire page and not just part of it.
Here's the journal so you can see it yourself: http://nymeth.livejournal.com Can anyone help me to fix this? It'd be greatly appreciated. |
|
|
![]() |
*Azarel* |
![]()
Post
#2
|
Guest ![]() |
You've set the background to a div layer specified as "mainbody"; because that div layer only contains your journal content and not your entire page, your background only repeats up to the end of your content. (See how the background ends under your navigation? Yeah.)
I suggest changing your background to your body: CODE div.mainbody { is what you have now.padding: 0; margin: 0; background-image: url("http://img.photobucket.com/albums/v683/Nymeth/deat002.jpg"); background-position: center; background-repeat: repeat; background-attachment: scroll; }body, td { font-family: "Verdana"; font-size: 10pt; } CODE div.mainbody { is what you should try changing it to. (I'm not sure how it'll appear)
padding: 0; margin: 0; }body, td { font-family: "Verdana"; font-size: 10pt; background-image: url("http://img.photobucket.com/albums/v683/Nymeth/deat002.jpg"); background-position: center; background-repeat: repeat; background-attachment: scroll; } |
|
|
![]() ![]() |