Jump to content

[Solved] Change the background


Recommended Posts

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.0
Please HELP!!!!!
thank you in advance
Roberta

Link to comment
Share on other sites

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

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 you
Roberta

Link to comment
Share on other sites

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

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”);

thanks
Roberta

Link to comment
Share on other sites

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...