southbywest 0 Report post Posted April 26, 2011 Hello, I am wanting to change the colour of the template and have used this custom CSS: `body #spotlight .effect, #footer .effect{background:none #XXXXXX}` where XXXXXX is any variable colour. This has only changed the top strip. Can you please tell me what to add to get the footer and welcome box (and anything else that I might be missing) to match? Thanks! Share this post Link to post Share on other sites
cmunns 16 Report post Posted April 27, 2011 `body #spotlight .effect, #footer .effect, body #spotlight, #footer {}` Also, without the .effect applied as above... Share this post Link to post Share on other sites
southbywest 0 Report post Posted April 27, 2011 Now I am even more confused... Share this post Link to post Share on other sites
Kate 3 Report post Posted April 27, 2011 Hey James, Copy Adam's code into your custom CSS, adding in the bg color that you want. Share this post Link to post Share on other sites
southbywest 0 Report post Posted April 27, 2011 OK but how do I add in the colour? Say for instance I want the entire site to be pink (#FF3399) what would the code look like with that in it? Share this post Link to post Share on other sites
cmunns 16 Report post Posted April 27, 2011 What is your site URL? So no color banner, just solid pink? Share this post Link to post Share on other sites
southbywest 0 Report post Posted April 27, 2011 http://misschris.co.uk/ No not solid pink. Just the feature bar, welcome box and footer. (and anything else that is currently red)...Basically I would like to know how I can do this for any colour with any EcoPro site. Share this post Link to post Share on other sites
cmunns 16 Report post Posted April 28, 2011 ` body #spotlight .effect, body #footer .effect, body #welcome { background: #F39; } ` The above CSS should work just fine. Share this post Link to post Share on other sites
southbywest 0 Report post Posted April 28, 2011 Thanks! Share this post Link to post Share on other sites