background resizing for blog

Status
Not open for further replies.
i am working on a new blog . for the background , i want a gradient which will resize itself according to the screen resolution of the user .

if anyone can help me with :

1. a gradient maker - i searched on google .. only one is useful and it isnt that good.

2. how to make the background resize itself according to the screen resolution .

the blog is powered by wordpress , if that helps .

thanks .
 

shashank4u

Youngling
You can use the CSS background repeat property

body
{
background-image: url(imagename.gif);
background-repeat: repeat-x
background-repeat: repeat-y
}

you can also use this
background-repeat: repeat;

for screen resolution : use this *bytes.com/forum/thread503034.html

hope that helps .
 
Status
Not open for further replies.
Top Bottom