How to decrease sidebar width in wordpress

dheer787

Regular Member
Joined
Nov 30, 2011
Messages
297
Reaction score
149
Hi friends,

I need small help regarding My website sidebar.

I am using wordpress "Boldy" theme and where i wanna reduce the width of my sidebar. Can any one suggest me where and how to change the code in the theme.

Please help me friends.

Regards,
Sudhir
 
It should be set somewhere in the css.

Just click on the editor in wordpress, try and find a width setting for the sidebar.
 
Post your url and tell us how much width do you want to keep.
 
#content #colRight {
float: left;
width: 240px;
}

in your style.css

the image is included by yourself and needs to be adjusted
 
Code:
#content #colRight {
    float: left;

    width: 240px;


}
Reduce the width number until it fits for you.

Thing is, you are selling PSD to XHTML and other Website Development Services and you were asking for a sidebar width..somethings not right.
 
Code:
#content #colRight {
    float: left;

    width: 240px;


}
Reduce the width number until it fits for you.

Thing is, you are selling PSD to XHTML and other Website Development Services and you were asking for a sidebar width..somethings not right.

That is not my site. That is a site which i am taking as an example to develop my site. Before developing I am planning to do that. My Blog is saarlist.com
 
I am not using "Boldy" theme.
But i am used to Graphene theme.
You can see Boldy option and column width change to manually.
if not work then you use to css code.
thanks for share.
 
#content #colRight { float: left; width: 240px; } Find this code in style.css and adjust the width as you want..
 
Back
Top