Increase gap b/w layout table and blocks

Increase gap b/w layout table and blocks

by Mark Girona -
Number of replies: 2
I realize I might just be overlooking a simple process, but how can I increase the margin space (assuming its in the css) b/w the border of the layout table and the blocks.

Here is a picture to better describe what I am referring to. Free free to visit my site HERE.


layouttable.bmp

I want to increase the margin space between the two horizontal lines within the red box.
Average of ratings: -
In reply to Mark Girona

Re: Increase gap b/w layout table and blocks

by Patrick Malley -
To increase the space between the layout table and the blocks:

#left-column {
padding-left:10px;
}
#right-column {
padding-right:10px;
}

Increase the padding values to fit your needs.

You cannot increase the margins since the left and right columns are table cells.
In reply to Patrick Malley

Re: Increase gap b/w layout table and blocks

by Mark Girona -
Thanks a ton... appreciate the support around here.