Make Sidebar Wider

akia

Well-known member
I want to make my sidebar wider so that I can accomodate ads that are 300x250 in size rather than 250x250 as they have a better rate of return,

I've sussed out where in the options to make the side bar bigger, but where would I change the size of the search box to make it wider to match the new width of the sidebar.
 
Add to EXTRA.css:
Code:
#QuickSearch {
width: 300px;
}
 
.formPopup {
width: 300px !important;
}
 
.formPopup .textCtrl {
width: 286px;
}

You will likely need to make a few other style related changes.
 
Top Bottom