X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Dev Questions (X-Cart 5) (https://forum.x-cart.com/forumdisplay.php?f=56)
-   -   How to change the background of my website. (https://forum.x-cart.com/showthread.php?t=68748)

zhandaan 02-28-2014 02:22 AM

How to change the background of my website.
 
i am currently using the theme provided by x-cart, but i wish to change the background to my own background. Do i need to create a css to overwrite it or any other method.

i am New to x-cart and php coding.:roll:

Petepots 02-28-2014 10:14 AM

Re: How to change the background of my website.
 
I dont know about v5 but in skin\common_files\css
you can see background-color: near the top. I am using 4.6.2 so as I said I dont know if its the same

Also if you use firefox you can get an addin called firebug thats a great help

Peter

RichieRich 03-02-2014 06:08 AM

Re: How to change the background of my website.
 
In version 5, choose settings > look and feel > custom css.

Enter your background css for example;

Quote:

body {
background: #CCC;
}


Make sure the use custom css box is checked, and it will override the css in your store.

zhandaan 03-06-2014 11:41 PM

Re: How to change the background of my website.
 
Quote:

Originally Posted by RichieRich
In version 5, choose settings > look and feel > custom css.

Enter your background css for example;



Make sure the use custom css box is checked, and it will override the css in your store.


Thanks Richie for the help, How if i want to put a photo as background, i have to use the same way? or i need to get the image url?

RichieRich 03-10-2014 11:48 AM

Re: How to change the background of my website.
 
Quote:

body
{
background-image:url('/images/background.jpg');
}

Ensure the url is pointing the the path of the image you have uploaded.

mworsnop 03-12-2014 01:47 PM

Re: How to change the background of my website.
 
body
{

background-image:url('/images/body-bg.jpg');
}

I used the above and it doesnt work. Putting in a color does. Rich did you get it working?

tony_sologubov 03-19-2014 04:31 AM

Re: How to change the background of my website.
 
Hi Mark!

I just tested the CSS code you sent me via PM and it works properly to me. Could you please post the snapshot of the entire Custom CSS section?

Thank you.

mworsnop 03-19-2014 08:20 AM

Re: How to change the background of my website.
 
There was something very strange going on. I had the hosting company restart the apache server process and now it works. I guess it was a cache or something. That really doesnt make sense to me, but its working and thats all that matters. Thank you!

heinz57beans 05-06-2016 06:31 AM

Re: How to change the background of my website.
 
ritchierich can you tell me when why i put an image has background it only seems to cover top half of page has you scroll further down theres another image im using nobellese skin is this skin made up of 2 background images

razortw 05-13-2016 05:28 AM

Re: How to change the background of my website.
 
Quote:

Originally Posted by heinz57beans
ritchierich can you tell me when why i put an image has background it only seems to cover top half of page has you scroll further down theres another image im using nobellese skin is this skin made up of 2 background images

It seems like you have sorted out, didn't you?
Could you please share the solution with us?
Thank you.

maplerockgw 03-31-2017 12:36 AM

Re: How to change the background of my website.
 
My site is also showing the uploaded image only in the top half. Does anybody know how to fix this?

qualiteam 03-31-2017 05:39 AM

Re: How to change the background of my website.
 
What is the site URL? Can we look at it?

maplerockgw 03-31-2017 06:58 AM

Re: How to change the background of my website.
 
Web site URL is www.maplerockguitar.ca

just to expand on this, my background image seems to load in the browser window of any device. but the default image from the nobless theme take over when scrolling down.

qualiteam 04-02-2017 10:32 PM

Re: How to change the background of my website.
 
At the moment the CSS rule that adds the custom background is this one:
Code:

body {
    background-image: url(/var/theme/images/tweed.jpeg) !important;
}


Change it to:
Code:

html, body {
    background-image: url(/var/theme/images/tweed.jpeg);
}


Also, you should tweak the image itself (at the moment it doesn't tile perfectly) and move it out of the "var" directory (XC5 may drop this directory and recreate it when rebuilding the site).

Blainevk 08-29-2022 12:12 AM

Re: How to change the background of my website.
 
Hello Qualiteam,

I tried:

html, body {
background-image: url(/var/theme/images/tweed.jpeg);
}

Using my own code:

html, body {
background-image: url(http://blainestravelclub.com/images/passport_stamp_background.png);
background-repeat: repeat;
background-attachment: fixed;
}

It works immediately when I'm in </> Custom CSS mode, but when I save it, close(X) </> Custom CSS mode, it goes away.

I tried rebuilding the store and that doesn't help.

Any ideas?


All times are GMT -8. The time now is 12:18 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.