hello,
just wondering if anyone can point me in the right direction on how to place the breadcrumb just below the category tabs. and instead of just on the center page, i need it to expand (same width as the site).
thanks
hello,
just wondering if anyone can point me in the right direction on how to place the breadcrumb just below the category tabs. and instead of just on the center page, i need it to expand (same width as the site).
thanks
You can do this in the stylesheet.
Drop the left column down a bit by giving it extra padding at the top:
.columnLeft {padding-top:10px;} Or whatever value pushes it down to your desired level.
Then, for #navBreadCrumbs, use a NEGATIVE value for the declaration governing the LEFT MARGIN... such as...
#navBreadCrumb {
padding: 0.5em 0.5em;
background-color: ##f3fdfc;
font-size: 0.95em;
font-weight: bold;
margin: 0px 0px 0px -75px;
} (where -75px is your value sufficient to shift it left to your required position.)
20 years a Zencart User