Page 1 of 1

can i add rightsidebar in leftsidebar+1 column template???

Posted: Thu Feb 07, 2008 9:37 am
by nepsguy
I am using leftsidebar+1 column template i want to add rightsidebar also. Please let me know how to add rightsidebar??

Re: can i add rightsidebar in leftsidebar+1 column template???

Posted: Thu Feb 07, 2008 10:43 am
by glennrichards
The following works for me:

Create 2 new divs in your stylesheet: 1 for the right column with float:right positioning, 1 for what will be a centre column.
Place these within the main div, right column first.

So CSS will look like:

div#rightblock {width: 18em; display: block; float: right; height: 1%;} /*you might want some margins?*/

div#centreblock {display: block; margin: 0 19.5em 0 0; height: 1%; }

And your template like:

{* Start Content Area *}
     
        your content
        your content
/*end of "main" div*/

Hope this does the trick.