XF 1.1 Sidebar width?

cdub

Well-known member
I see where I can increase the sidebar width - I tried changing it to 300 from 250 - but now the search bar in the top right doesn't line up anymore.

How do I make the search input field wider?
 
Give this a try. Increase the width to fit your needs.

Code:
.formPopup .textCtrl, .formPopup .button {
    width: 232px;
}

While it's nice your attempting to help people you should be cautious in the advice you give, I've noticed some of your fixes are completely global meaning it'll effect a lot more places than the user asking for, therefore they'll probably just return because it broke something else. :D
 
While it's nice your attempting to help people you should be cautious in the advice you give, I've noticed some of your fixes are completely global meaning it'll effect a lot more places than the user asking for, therefore they'll probably just return because it broke something else. :D

Yeah, I just got this from inspecting the element of the search bar. It's also why I said, "Give this a try" and not just, "Use this." :)
 
Top Bottom