Hi @piotrwalc!
On iOS, if the font size of an input field is smaller than 16px
, Safari or Chrome will automatically zoom in when the input field is focused. This is intended to make smaller text easier to read and interact with. I found in your theme the CSS that changes the font size to 14px:
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
font-size: 14px!important;
font-family: "Poppins"!important;
color: #98adb9!important;
font-weight: 600!important
}
To prevent iOS from zooming in on focus when using a font size smaller than 16px
:
- Use a font size of at least
16px
for input fields.
- Alternatively, set the following
meta
tag in the HTML <head>
to disable the default zoom behavior: <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
Best regards,
Kris