Page 1 of 1

How to delete side column

Posted: Sun Mar 13, 2011 9:52 pm
by mresailor
How can I delete one of the side columns? When I take out the html, there still appears to be a place holder so the main display doesn't flow across the rest of the screen. I want my faqs to run down the left side and the main content to display in the rest of the browser window.

Thanks

Re: How to delete side column

Posted: Mon Mar 14, 2011 7:47 am
by Thorsten
Hi,

you have to edit the CSS code as well.

bye
Thorsten

Re: How to delete side column

Posted: Mon Mar 14, 2011 4:37 pm
by mresailor
I've been fooling with that, but am not really good with CSS, I can't get the main page to extend over where the right column used to be before I deleted the html.

What's controlling that?

Re: How to delete side column

Posted: Mon Mar 14, 2011 4:56 pm
by Thorsten
Hi,

it's in template/default/style.css:

Code: Select all

/* Main columns definitions */
.leftcolumn { float: left; left: 0px; width: 200px; margin-bottom: 1em; }
.rightcolumn { position: static; float: right; width: 200px; margin-bottom: 1em; }
.rightcolumn ol { margin: 0 0 0 25px; padding: 0; }
bye
Thorsten