Using Drupal 7 with Danland theme. I cannot seem to get the left and center blocks to change widths. I have made the changes in the css as described in the Danland theme handbook, but nothing changes. Any ideas?

Comments

danpros’s picture

Hi,

Make sure to clearing the cache / reload the page after modify any CSS.

shruti.sheth’s picture

Hi,
I hope my answer helps.
One of the ways of getting the left and center blocks with changed widths can be as follows,

The width of left blocks can be changed by changing the width of #sidebar-left in your style.css
e.g. if the width for left blocks need to be changed from 26% to 20%, change the width to 20% in following code in your style.css

#layout-type-1 #sidebar-left {
width: 26%;
float: left;
font-size:12px;	
}

Similarly width modification can be performed on #content in style.css, depending on the layout and number of sidebars present, for the center blocks if placed in content region.

Thanks.

danpros’s picture

Status: Active » Closed (fixed)

@shruti.sheth: thanks.

That should fix the problems.