Hey there
I am having trouble to display Toolset components CSS properly, on the Safari Browser on Mac, on chrome look ok, apart from the padding in "Use my location" button
hidden link
Hello, Jamal asked me to look into this issue since he is unable to test in Safari on a Mac. I was able to compare the search filter layouts in Safari and Chrome, and found one main difference. I see the following custom CSS is added in your site:
.wpv-custom-search-filter__input {
width: 100%;
height: 150px;
clear: both;
}
The height setting in that code results in some layout differences in Safari. I'm not sure why the height attribute was added here, but I think the differences between Safari and Chrome can be attributed to this height style. Removing the height attribute causes the filters to be displayed very similarly across browsers, as you can see in the screenshot here. I suggest you remove the height attribute from that custom CSS code, like so:
.wpv-custom-search-filter__input {
width: 100%;
clear: both;
}
That should resolve the major differences between Safari and Chrome filter layouts. If there is something else you would like to achieve, please explain in more detail and provide screenshots explaining the problem.
My issue is resolved now. Thank you!