Zen Cart Logo
Forums / Basic Configuration / Removing a sidebox header only

Removing a sidebox header only

Locked

Views: 767

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
13 Mar 2010, 4:00 PM
#1
robertg avatar

robertg

Zen Follower

Join Date:
Nov 2009
Posts:
341
Plugin Contributions:
0

Removing a sidebox header only

Hello All,
I'm back with I hope will be the last question on this subject.

I would like to remove the Checkout rightsidebox header only, I want the checkout button to remain, on my temp site http://30408.vws.magma.ca/TTEZENCART.

I believe i do that through the stylesheet but am not sure how.

As usual your help will be greatly appreciated.
Bob

13 Mar 2010, 4:12 PM
#2
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Location:
N of San Antonio TX
Posts:
9,765
Plugin Contributions:
9

Re: Removing a sidebox header only

just find the heading in the css and set it to display: none; in the listing.

I use firebug with firefox as my tool of choice for finding these things.

13 Mar 2010, 4:16 PM
#3
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Removing a sidebox header only

Get FireFox and the firebug extention and other extentions you might find useful

Add to your stylesheet

#bannerbox2Heading {
        display: none;
        }
13 Mar 2010, 4:19 PM
#4
robertg avatar

robertg

Zen Follower

Join Date:
Nov 2009
Posts:
341
Plugin Contributions:
0

Re: Removing a sidebox header only

The problem is the heading title is not in the css stylesheet. it only gives me a rightBoxHeading but no actual banner name. I normally use the DOM source of selection to get the css names.
Thanks for your help

13 Mar 2010, 4:24 PM
#5
robertg avatar

robertg

Zen Follower

Join Date:
Nov 2009
Posts:
341
Plugin Contributions:
0

Re: Removing a sidebox header only

kobra:

Get FireFox and the firebug extention and other extentions you might find useful

Add to your stylesheet

#bannerbox2Heading {
display: none;
}


Thanks again Kobra, 
Your help has been exceptional.
Bob
13 Mar 2010, 8:33 PM
#6
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: Removing a sidebox header only

There are many div id's and classes that exist in the code files, that are undefined in the standard stylesheet. In a basic install of zencart, using the initial classic template, many divs inherit their styling from a parent div - so there is no need to be specific in this initial "view" of zencart.

It does confuse many people who say... "I see the ID in the code, but not in the stylesheet... please help!"

Well, that help is to simply add the ID to the stylesheet and apply whatever declarations are appropriate...