Reputation: 1
I am using the Joomla smart search module. I tried to adjust the "Search Field Size" to increase the box size but nothing happened. https://www.spacebizguide.com/
Then I tried to edit the template, but nothing happened too. I am using the latest Joomla version 3.8.2.
So, where can I change the search box width?
Thanks.
Upvotes: 0
Views: 259
Reputation: 1126
There is a CSS style from Bootstrap that is affecting the width:
.input-medium {
width: 150px;
}
I would suggest adding this to your custom.css:
form#mod-finder-searchform .input-medium {
width: 150px;
}
Upvotes: 1