ROBALE Posted June 26, 2011 Share Posted June 26, 2011 Hi, I'm trying to change the backprong color of my front office with another image. the global.css let me change the color but not the image. I've been try for the past 4 hours :long: .I'm using prestashop 1.4.3.0Please HELP!!!!!thank you in advanceRoberta Link to comment Share on other sites More sharing options...
LeakyShoes Posted June 28, 2011 Share Posted June 28, 2011 If you mean the website page background, you do this by editing the body tag in global css, add a background-image line as shown below. This will tile the image on both X and Y axis, you can change this by using a no-repeat command.Of course you'll need to upload an image to the server before you can reference it. This example has the image uploaded to the img folder themes.body { background-image: url("../img/BodyBg.gif");} Link to comment Share on other sites More sharing options...
ROBALE Posted June 29, 2011 Author Share Posted June 29, 2011 I tried and won't work .....body { background-color: white ; font-size: 14px; font-family: chopin; color: #1c921a; text-align: center background-image: url(”../img/11528.jpg”); }thank youRoberta Link to comment Share on other sites More sharing options...
LeakyShoes Posted June 29, 2011 Share Posted June 29, 2011 You need to put a ; semi colon after the text-align:center; line to close the script.body { background-color: white ; font-size: 14px; font-family: chopin; color: #1c921a; text-align: center; background-image: url(”../img/11528.jpg”);} Link to comment Share on other sites More sharing options...
ROBALE Posted June 29, 2011 Author Share Posted June 29, 2011 No Luck....what Im doing wrong?body { background-color: white ; font-size: 14px; font-family: chopin; color: #1c921a; text-align: center; background-image: url (”http://lebomboniereweddingfavors.com/lebomboniere/img/27.jpg”);thanksRoberta Link to comment Share on other sites More sharing options...
LeakyShoes Posted June 29, 2011 Share Posted June 29, 2011 Copy and paste this Robertabody { background-color: white ; font-size: 14px; font-family: chopin; text-align: center; color: #1c921a;background-image: url("http://lebomboniereweddingfavors.com/lebomboniere/img/27.jpg");}regards Simon Link to comment Share on other sites More sharing options...
ROBALE Posted June 29, 2011 Author Share Posted June 29, 2011 This is what I did and now everything worked!!!!body { background-color: white ; font-size: 14px; font-family: chopin; text-align: center; color: #1c921a;background-image: url('http://lebomboniereweddingfavors.com/lebomboniere/img/bridal.jpg');} Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now