Hello StackFlow community,
I wanted to zoom all the elements of my website for bigger resolutions
So I wrote this code:
@media screen and (min-width: 1368px) {
html {zoom: 110%;}
}
@media screen and (min-width: 1640px) {
html {zoom: 120%;}
}
@media screen and (min-width: 1846px) {
html {zoom: 135%;}
}
It works great generally, except some minor details that do not behave as I would like.
One of them is the plugin MailMunch : Scrollbox (highlighted in green in my image) It acquired a huge shift (represented by the red arrow)
In default mode, it was displaying in bottom right corner, now it goes way to the top and it's impossible to read the whole of it.
Bad news for that: I can't play with the CSS since I am in free mode, and it's a dynamic element I can't force custom CSS through my theme.
Would you have any advice regarding this issue?
Either playing with my code on selectors HTML, either playing somehow on this scrollbox?
URL is: https://osezrealiservosreves.com/esprit-critique-koober/
Your help would be greatly appreciated, thanks :)