hi.

how i can rearrenge css file that will show some blocks respectively on the sidebar. just like on wordpress version of this theme.
see picture pls:

CommentFileSizeAuthor
1.JPG43.69 KBmutevaggil

Comments

naheemsays’s picture

What you need to do is to place two blocks next to each other (one above the other) and then find their unique css id.

For instance, if you want to place the "who's online" and the "who's new" blocks together, try something like this (create a new file called local.css and put this in there):

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

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

the block-user-2 and block-user-3 are the css ids for the two blocks.

(each block being 135 pixels wide)

Netbuddy’s picture

If your putting it in the right sidebar, I found I had to use this with the latest 6.2 dev release.

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

#sidebar-right #block-user-3 {
  float:left!important;
  clear:none!important;
  width:135px!important;
}
naheemsays’s picture

Version: 6.x-1.0 » 6.x-2.x-dev
Status: Active » Fixed

yes, in the 2.x-dev branch, there are some changes to the css classes (and more)

Status: Fixed » Closed (fixed)

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