Green Salad Tweak

Permalink
Is it possible to remove the grass that serves as a static background image? I like the template very much except for that one item.

Thanks in advance for any help you can provide

 
Fernandos replied on at Permalink Reply
Fernandos
Yes that's easy.

Just "copy" /concrete/themes/greensalad into /themes/greensalad. I don't mean /themes/greensalad/greensalad, just to be sure.

Then open /themes/greensalad/main.css in your favorite editor and look for:

body {
   padding: 0px;
   margin: 0px;
   background: #fff url(images/footer_grass.jpg) repeat-x fixed left bottom;
}


Simply replace that with:
body {
   padding: 0px;
   margin: 0px;
   background: #fff;
}
sparroweco replied on at Permalink Reply
I have two sub-directories with identical contents in my main directory, both of which contain the contents that you recommend I modify. One of these is titled "WWW" and the other is "public_html."

1) Does it matter which I modify?

and 2)to confirm your instructions:
I should copy and paste the contents of the concrete folder into the themes folder, (which seems to be a sub-folder of the concrete folder)?

Thanks for your help!

Tom
jordanlev replied on at Permalink Reply
jordanlev
1) Those are the same folder -- one is an "alias" (or "shortcut") to the other.

2) In your FTP program (or in your CPanel, depending on how you are doing this), navigate to this folder:
/public_html/concrete/themes/

Now copy the entire "greensalad" folder that's listed there into this folder:
/public_html/themes/

(If you are unable to copy folders like that from your FTP program or CPanel, then try downloading that folder from the first location to your computer, then uploading it from your computer to the server in the second location).

Finally, make the edit that Fernandos suggested in the "main.css" file that's in the new copy of the folder you just made:
/public_html/themes/greensalad/main.css

Hope that helps.

-Jordan

PS - sorry I didn't respond earlier -- I didn't know you posted this here and just randomly came across it today!
sparroweco replied on at Permalink Reply
Thanks very much, guys. It worked like a charm!