I think this is related to the problem I just reported. Hopefully they’ll respond: https://ww.wp.xz.cn/support/topic/forminator-css-overrides-global-box-sizing-model/
Hi @eypclk
As mentioned by @hdsteve this is the same case and we have already reported this issue to our Forminator team a while ago and future update will fix this.
As for now please add this code to WP Dashboard -> Appearance -> Customize -> Additional CSS section:
body *,html *{
-webkit-box-sizing: initial;
box-sizing: initial;
}
.forminator-ui *{
-webkit-box-sizing:border-box;
box-sizing:border-box;
}
Kind Regards,
Kris
Thread Starter
eypclk
(@eypclk)
Hello, I added the CSS code but there was no improvement.
Hi @eypclk
Can you try:
body *,html *{
-webkit-box-sizing: initial !important;
box-sizing: initial !important;
}
.forminator-ui *{
-webkit-box-sizing:border-box;
box-sizing:border-box;
}
Kris
Thread Starter
eypclk
(@eypclk)
Yes, it’s fixed now. Thank you very much.