vForums Support > System Improvements :: Suggestions :: Implemented Suggestions :: > "Fixed" Background

"Fixed" Background - Posted By Nick (nickb) on 29th Nov 07 at 12:02am
Will "Fixed" Backgrounds be implemented?

It would make the forum look better when the wallpaper is not repeating.

~Darkmage

Re: "Fixed" Background - Posted By Ross (admin) on 29th Nov 07 at 12:20am
 
Will "Fixed" Backgrounds be implemented?

It would make the forum look better when the wallpaper is not repeating.

~Darkmage


At this very moment, it's unlikely any changes will be happening to the options found on the modify colors page. Although that is an area I have some ideas for to give it a total revamp. However, it's easy to accomplish the fixed background with just a line or two of CSS in your Global Header:

<style type="text/css">
<!--
body { background-attachment: fixed; }
-->
</style>

Re: "Fixed" Background - Posted By Nick (nickb) on 29th Nov 07 at 12:22am
ok thanks, I did use this


<body background="" bgproperties="fixed">

But it did not work.

Re: "Fixed" Background - Posted By Ross (admin) on 29th Nov 07 at 12:42am
All web pages should only have 1 <body> tag. Since the source code already adds a body tag of its own, a second <body> tag would just cause problems.

Re: "Fixed" Background - Posted By Nick (nickb) on 29th Nov 07 at 1:24am
oh ok, I see.