Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / how do i make categories border to show up

how do i make categories border to show up

Locked

Views: 1,426

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
20 Apr 2007, 6:40 AM
#1
bangsters avatar

bangsters

Zen Follower

Join Date:
Jun 2006
Posts:
168
Plugin Contributions:
0

how do i make categories border to show up

Hi.

Where in the template can I change how the categories show up in the center part of the page to have the table borders show up? The default is no border or box shows up per category. The category list I'm referring to is when you go to a category and subcategories are displayed in the center of the page, such as ig you go to index.php?main_page=index&cPath=0 (all categories are dsplayed)...how do I put borders here? which file do I need to edit?

Thanks

20 Apr 2007, 3:39 PM
#2
gjh42 avatar

gjh42

Black Belt

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

Re: how do i make categories border to show up

Add to your stylesheet

#indexCategories .categoryListBoxContents {
border: 1px solid #aabbcc;
}

Change border width, style and color as you wish.

20 Apr 2007, 3:49 PM
#3
gjh42 avatar

gjh42

Black Belt

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

Re: how do i make categories border to show up

You may also want to add margins and padding to space things out.

20 Apr 2007, 4:33 PM
#4
bangsters avatar

bangsters

Zen Follower

Join Date:
Jun 2006
Posts:
168
Plugin Contributions:
0

Re: how do i make categories border to show up

thank you!