Jump to content

TEMPLATE WIDTH 100%


Recommended Posts

Hi its possible to edit the original template width to fill 100% of the screen?

 

If yes, the template will work perfectly or its not recommended because modules, other thing, etc?

 

Using Prestashop 1.5.4

 

Cheers

Link to comment
Share on other sites

  • 2 months later...

you have to add it to the css styles of your website, i suppose that this is global.css file located in your theme directory.

 

use this:

 

body {
backgrund:url('url_to_your_background') top repeat-x;
}

 

or edit existing body css style there.

Link to comment
Share on other sites

hi,

tested, no work, i add in global.css

here the code

 

body{

 

font:normal 11px/14px Arial, Verdana, sans-serif;

color:#000000;

backgrund:#FFF url(../img/bg-header.jpg) top repeat-x;

background: #FFF url(../img/bg-page.jpg) repeat;

background-attachment:fixed

}

 

thanks

Link to comment
Share on other sites

If you have the image in the root folder img file try ../../../img, It should look like this when done.

body{

font:normal 11px/14px Arial, Verdana, sans-serif;

color:#222;

background:url('../../../img/your image name') top repeat-x;

}

 

You can only use 1 background as the last in the list will be the one used.

If you want the background to scroll with the page remove the fixed line.

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...