MyBB Community Forums

Full Version: Fixed Background
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
Try editing the css to add position: fixed Smile 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

[Image: mybb-TeamSponsor-css-for-site.png]

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. Smile