Hi all and sorry for the dumb question but i am very new to drupal. I want to ask if it is possible to make the theme to have only two columns. Content and one sidebar at the right where they will not overlapping between them.

Comments

Deepika.chavan’s picture

Hi,
Yes, we can use the theme with two columns only. Do not put any block in 'sidebar first' region then you wont see left sidebar region. And try adding following css code in your local.css file (see the instructions given in 'local_sample.css' to activate css file).

body.layout-main-last #content-wrapper {
 float:left;
 margin:20px 15px 0 0;
 position:relative;
 width:760px;
 z-index:1;
}

body.layout-main-last #sidebar-last {
 background-color:transparent;
 margin:20px 10px 0;
 width:400px;
}

Please change the width according to you requirement. And do clear the cached data(here- '/admin/settings/performance').

Rgrds,

Deepika Chavan.