Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / lines in the side boxes

lines in the side boxes

Locked

Views: 1,131

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
24 Jun 2006, 4:27 PM
#1
thuynh7 avatar

thuynh7

New Zenner

Join Date:
Nov 2005
Posts:
21
Plugin Contributions:
0

lines in the side boxes

Hi all

I've noticed on some zencarts that you're able to split indivdual sidebox items into cells, like this http://www.bronsononline.com/ (although i'm not too sure that this site is zencart). Just wondering how you would do this, I've noticed it on a few sites.

Also how do i get rid of the <hr> and
Specials ...
New Products ...
Featured Products ...
All Products ...

in the category box.

thanks

24 Jun 2006, 5:53 PM
#2
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: lines in the side boxes

Your question has two parts.

You're right, the cart's not Zen Cart, but the effect can be achieved in Zen Cart. Your would do so by styling the links in your stylesheet. The exact CSS will vary from design to design, but something like this is a reasonable example> #informationContent a {

display:block;
width: 100%;
padding: 2px;
border: 1px brown solid;
border-top: none;

}You would probably need to do this sidebox by sidebox as unfortunately there are several different ways of building them (e.g. are are built as unordered lists, others as link lists serarated by <br> tages), and some contain links that you certainly wouldn't want to style this way.

To get rid of the links in the bottom of the categories box, go to Admin > Configuration > Layout Settings and set "Categories Box - Show Specials Link" etc to false. If you set all four like this, these <hr> will disappear too. If you want to turn of the <hr> separately, set "Categories Separator between links Status" to 0.