Home › Forums › WoodMart support forum › Text moving on pageload, why? › Reply To: Text moving on pageload, why?
March 28, 2022 at 9:15 am
#364529
Bogdan Donovan
Keymaster
Hi,
You have used full-width and full-height WPBakery row options simultaneously. Both of these options are calculated via JS during page loading and this is causing some visible jumps during loading. This issue can’t be completely fixed via theme update, but you can try to hardcode its values using the following custom code.
body {
--wd-scroll-w: 17px;
}
.vc_row-o-full-height {
min-height: 100vh !important;
}
Kind Regards