Will "Fixed" Backgrounds be implemented?
It would make the forum look better when the wallpaper is not repeating.
~Darkmage
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>
ok thanks, I did use this
<body background="" bgproperties="fixed">
But it did not work.
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.
oh ok, I see.