I found that the original Arthemia theme for WP has the following sidebar structure:

---------------------
sidebar-top
---------------------
left | right
---------------------
sidebar-bottom
---------------------

Is there a way I can achieve the above structure?

btw, Arthemia is one of the best free Drupal theme I have ever seen.
Glad to hear that you are planning to port it to Drupal7.

Comments

NaheemSays’s picture

currently that is only possible to do with extra css which you can throw into a new local.css file in the theme folder.

To do it is pretty simple:

1. set up the theme blocks so that the relevant blocks are next to each other
2. find out the block css ids are and then create a local.css file in the theme folder (or edit the existing one if you have one already) amd add css that resembles the following:

#sidebar-primary #block-user-2 {
  float:right!important;
  clear:none!important;
  width:135px!important;
}

#sidebar-primary #block-user-3 {
  float:left!important;
  clear:none!important;
  width:135px!important;
}

where #block-user-2/#block-user-3 is the block's css id.

and that should put the two blocks side by side.

Feel free to tweak.

Cliffy’s picture

Status: Active » Fixed

Bravo! Follow your instruction and things are done :)

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.