PDA

View Full Version : Problem in the background of the Forum


amerelgen
04-21-2009, 05:45 PM
hi all

I have had a background in Forum
But not working correct
Here's a picture of the problem

https://vborg.vbsupport.ru/attachment.php?attachmentid=98147&stc=1&d=1240339464

How can I make my background does not repeat
Or what is the correct code ?

BBR-APBT
04-21-2009, 06:22 PM
<a href="http://www.w3schools.com/css/css_background.asp" target="_blank">http://www.w3schools.com/css/css_background.asp</a>

amerelgen
04-21-2009, 06:35 PM
http://www.w3schools.com/css/css_background.asp

All of these codes, which in this link is not working correct
Problem in the background image to be repeated

Lynne
04-21-2009, 06:59 PM
Post what you entered into the background field and perhaps we can help suggest what you need to change.

setishock
04-23-2009, 04:14 AM
In the BODY css attribute put a filler color to cover any area that the image does not cover.
In the BODY Extra CSS Attributes you'll need to add something like this:


background-image: url(http://myforum.com/directory/path/to/the/image);
background-repeat:no-repeat;
background-attachment:fixed;
background-position:center;

No-repeat will cause the image to only show one time. Fixed nails the image down so the forum glides over it when scrolling. And center puts it in the center of the left and right borders.