Try editing the css to add position: fixed
Depends on how you're doing the background though.
(2010-11-24, 06:40 PM)TeamSponsor Wrote: [ -> ]the background of my forum stays at the top when i scroll down i want it to scroll with the scroller how do i do this?
www.standpointgaming.com/Forums
You can edit the css through themes.
Here's your CSS
How about something like this;
body
{
background-image:url("a.jpg");
background-repeat:repeat-y;
background-position:top center;
background-attachment:fixed
}
Should do the job, that'll keep the image fixed while the forum still scrolls.