• Resolved h2vm

    (@h2vm)


    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…

Viewing 4 replies - 1 through 4 (of 4 total)
  • 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;}

    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.

    Thread Starter h2vm

    (@h2vm)

    thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Transparant Color’ is closed to new replies.