Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Change background on help page but not main page?

Change background on help page but not main page?

Locked

Views: 2,073

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
9 Jan 2008, 6:20 PM
#1
adamson avatar

adamson

New Zenner

Join Date:
Dec 2007
Posts:
62
Plugin Contributions:
0

Change background on help page but not main page?

Hi,

How can I change the background of the help link on THIS PAGE but not change the background on my main page?

If you click on the help link beside "Shopping Cart Contents" you will see its hard to read.

Thanks!

11 Jan 2008, 5:20 PM
#2
madmumbler avatar

madmumbler

Zen Follower

Join Date:
Dec 2005
Location:
SWFL
Posts:
450
Plugin Contributions:
0

Re: Change background on help page but not main page?

You can set up individual stylesheets.

You need to look at the downloaded files for Zen Cart on your system. There is a /docs folder. In it is a page about css stylesheets. You have to use a specific naming system for the stylesheet to be picked up properly by the override system.

HTH,

12 Jan 2008, 5:48 AM
#3
adamson avatar

adamson

New Zenner

Join Date:
Dec 2007
Posts:
62
Plugin Contributions:
0

Re: Change background on help page but not main page?

That page in the docs section wasnt much help, as I dont really understand much css. Can someone offer more help?

If you go to THIS SITE and click on a link to a service, then click the add to cart button, and finaly click the [Help(?)] link towards the top, you will see the page with the background I need to change.

Details on how to change this would be great! :smile:

12 Jan 2008, 6:29 AM
#4
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: Change background on help page but not main page?

adamson:

That page in the docs section wasnt much help, as I dont really understand much css. Can someone offer more help?

If you go to THIS SITE and click on a link to a service, then click the add to cart button, and finaly click the [Help(?)] link towards the top, you will see the page with the background I need to change.

Details on how to change this would be great! :smile:
You need to add/change code to your current template's stylesheet..
i.e. Code below is for Zencart 1.3.8 or 1.3.8.1

/*All below for zencart 1.38*/
#popupShippingEstimator, #popupSearchHelp, #popupAdditionalImage, #popupImage, #popupCVVHelp, #popupCouponHelp, #popupAtrribsQuantityPricesHelp, #infoShoppingCart {
background-color: #ffffff;
background-image: url(../images/infoback.gif);
background-repeat: repeat-y;
background-repeat: repeat-x;
 } 

Create pale/white image named infoback.gif, place in your template's images folder..
As always, BACKUP your template's stylesheet FIRST, BEFORE making changes