Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / How do add a space under a side box?

How do add a space under a side box?

Locked

Views: 770

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
13 Oct 2010, 05:44
#1
annav avatar

annav

Zen Follower

Join Date:
Jul 2008
Location:
Sydney, Australia
Posts:
171
Plugin Contributions:
0

How do add a space under a side box?

I can't for the life of me find how to do this, as I have done it before, but where can I find how to add a space after a side box that is "touching" the bottom bar.

The website is https://www.instonejewellery.com.au

Thanks
Anna

13 Oct 2010, 06:10
#2
kobra avatar

kobra

Black Belt

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

Re: How do add a space under a side box?

In your templates stylesheet.css file
Find

#navColumnOneWrapper, #navColumnTwoWrapper {
    margin-left: 0.5em;
    margin-right: 0.5em;
    }

Change to and adjust to suit

#navColumnOneWrapper, #navColumnTwoWrapper {
    margin: 0em 0.5em 1em 0.5em;
    }
13 Oct 2010, 06:14
#3
annav avatar

annav

Zen Follower

Join Date:
Jul 2008
Location:
Sydney, Australia
Posts:
171
Plugin Contributions:
0

Re: How do add a space under a side box?

All done and so easy. thanks!