View Full Version : Fixed background image


Dzidza
06-02-2003, 05:47 PM
Hi,
I was wondering how to make my blog's background image fixed.

I know this little code: bgproperties="fixed"> to use elsewhere, but it doesn't work in a blog. I'm new to this so bear with me ;)
Thanks !

aerith86
06-02-2003, 07:27 PM
Does your blog allow CSS?

Dzidza
06-02-2003, 09:36 PM
Yep

aerith86
06-02-2003, 10:28 PM
Try inserting this into the <head> part of your blog, and change the part in bold to whatever the URL for the image is.

<style type="text/css">
<!--
body
{background-image:url(value);
background-repeat:no-repeat;
background-attachment: fixed;
-->
</style>