Archived topic
Search Box Displays Differently on Mobile
3 replies · Started by Ben on October 2, 2021
Hi Guys,
I've made some changes to the CSS of the search bar. It displays perfectly on computer.

On Mobile though, the search bar itself is rounded:

How do I get it to display like on computer?
Thanks
Hi there,
Any chance you can link us to the site in question?
I could be wrong but I believe it's a browser thing - the theme itself certainly doesn't add any border radius to the search field on mobile.
You can use the private information field:
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Let me know :)
Hi Leo,
Yes, I've added the site in the private field.
Hi there,
try adding this CSS:
.wp-block-search .wp-block-search__input {
-webkit-appearance: none !important;
border-radius: 0 !important;
}
This will remove the iOS browser styling.