AI Search
Classic Search
Notifications
Clear all
How-to and Troubleshooting - wpForo 2.0
3
Posts
2
Users
1
Reactions
436
Views
Sep 02, 2025 2:40 am
At the moment you have to click on the search icon in the forum menu bar to expand the search input box. Is it possible to have the search box already expanded without having to click first?
2 Replies
Sep 02, 2025 3:08 pm
Hi,
Please use this CSS code:
#wpforo #wpforo-wrap .wpf-search input[type="text"].wpf-search-field{
width: 180px;
background: #fff;
z-index: 5;
}
Insert the CSS Code in the "Custom CSS Code" textarea in the wpForo > Settings > Colors & Styles admin page.
Please don't forget to delete all caches and press Ctrl+F5 (twice) on the frontend before checking to reload the updated CSS file.
Sep 02, 2025 3:55 pm
Perfect, thank you.