Archived topic
Customize the size of the search widget
4 replies · Started by Antonio M.B. on May 29, 2017
Viewing posts 1–5 of 5
Hi, I want to put the search widget in the header but I want to put the widest size, since the figure is quite short. Can you help me?
Hi there,
Try this CSS;
.header-widget .widget .search-field {
width: 500px;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
If this doesn't work are you able to provide a link to your site? Thanks!
You are very efficient. Thank you
Glad I could help!
You might want to put that in a media query so it's responsive:
@media (min-width: 769px) {
.header-widget .widget .search-field {
width: 500px;
}
}
This archived topic is closed to new replies.