How do I create a background for my page with Transparent Color?
Hope transparent is the right word to describe it....
let's say I have a dark blue and it is shading lighter towards the bottom of the screen....
If confusing let me know. I will try to provide more details...
Create a gradient image with the darkest blue at the top and the lightest at the bottom. The image should be the height of the fade effect that you want but needs to be no wider than 10 or 20 pixels.
Upload it to your theme's image folder and then apply it to your site's body background using CSS - eg:
body {background:url(images/gradient.jpg) repeat-y top left;}
nerdanita
Member
Posted 2 years ago #
I guess that you mean "repeat-x" to repeat the image horizontally
body {background:url(images/gradient.jpg) repeat-x top left;}
You're right. I got my x and y axis confused.