I want to change the sidebar background color in theme Twenty Ten 1.1 Also some padding to differentiate from the main writing area.
Tried a lot but couldn't get any solution. Any help will be appreciated.
My website's url - http://www.neerajkulkarni.com
Look for this code in style.css line 1160
#main .widget-area ul {
margin-left:0;
padding:0 20px 0 0;
}
Add
background:#hexcolor; example #FFFF00 wil give yellow color
as for padding you change
padding:0 10px 10px 10px;
and you will everything move to center in sidebar
Thanks a lot sir. You made it so easy.