i use the default theme in my site. i need to reduce the width of the left and right side bars or atleast one of them. how do i do it?
where do i alter the width size?

Comments

nevets’s picture

I would recommend using the firebug extension to firefox as it helps to track down answers to this type of question. In this case changing both sidebars to another with requires changes in three places.
style.css (line 379)

#wrapper #container .sidebar {
float:left;
margin:60px 0pt 5em;
position:relative;
width:210px;
z-index:2;
}

and style.css (line 363)

body.sidebars #center {
margin:0pt -210px;
}

and style.css (line 374)

body.sidebars #squeeze {
margin:0pt 210px;
}

Change all instances of 210px in the above css to you new value.