Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / I want to turn something off...

I want to turn something off...

Locked

Views: 914

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
8 Jun 2007, 6:03 AM
#1
bigcaat avatar

bigcaat

New Zenner

Join Date:
Jun 2007
Posts:
49
Plugin Contributions:
0

I want to turn something off...

I want to turn something off, but I don't know what they're called. Here's my page:
http://spiritcaat.com/zenshopping

I want to turn off the bars that are directly above the box headers that say "search," "categories," etc.

They're the ones that are the same color as the breadcrumb line.

Can someone tell me how to do this? Or, can I not do it, and I just have to change the background color? If I do that, then the breadcrumb line doesn't line up with the search header.

Thanks,
Caat

8 Jun 2007, 8:31 AM
#2
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: I want to turn something off...

Those are not actual "bars", but spaces between boxes that let the background show through.

You can eliminate them by editing your /includes/templates/your_template/css/stylesheet.css.
Find this section:

.leftBoxContainer {
border: 1px solid #ffffff;
margin-top: 1.5em;
}

and change it to:

.leftBoxContainer {
border: 1px solid #ffffff;
margin-top: 0;
}

You may also want to change some other aspects of the sideboxes, and this part of the stylesheet is the place to do it.

8 Jun 2007, 11:20 AM
#3
kobra avatar

kobra

Black Belt

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

Re: I want to turn something off...

Additionally you can leave the spacing between the side boxes and edit this in the stylesheet to change the background color...

#navColumnOne {
	background-color: transparent;
	}
8 Jun 2007, 3:49 PM
#4
bigcaat avatar

bigcaat

New Zenner

Join Date:
Jun 2007
Posts:
49
Plugin Contributions:
0

Re: I want to turn something off...

It works! Everything should be that easy. :wink:

Thanks!
Caat