You must be logged in to post
Search Forums:


 






Wildcard Usage:
*    matches any number of characters
%    matches exactly one character

How to get rid of Background Gradiant?

UserPost

2:20 pm
May 12, 2009


robbeh

New Member

posts 2

1

I am sure this is very simple, I have spent about an hour between last night and tonight trying to figure out if I can tone down the gradiant in the background or make it a solid colour?

I tried overwritting a preset image with just a white pallet or even picture and the gradiant is still there…even though my background colour is set to white.

Thanks a lot for your help!

Robb

7:07 am
May 13, 2009


Ryan

Admin

posts 1523

2

You need to edit the style.php file to remove the gradient from the background.  Just look for this code:

#bgwrapper {  /*— This id selector controls the blog background layer —*/
    width: 100%;
    margin: 0px;
    padding-top:<?php echo $flex_blog_margin; ?>px;
    background: url(images/bg-fade.png) repeat-x top left;
    min-height: 100%;
}

and change it to:

#bgwrapper {  /*— This id selector controls the blog background layer —*/
    width: 100%;
    margin: 0px;
    padding-top:<?php echo $flex_blog_margin; ?>px;
    min-height: 100%;
}

8:34 pm
May 13, 2009


robbeh

New Member

posts 2

3

thank you sir, worked like a charm!