may I ask, is there an option for the featured slider not to push other content down after it loads? For example to have some kind of fixed height/width container for it. The purpose is to get a higher CLS (Cumulative Layout Shift) score for google as this one things is driving the score down a lot.
Hello,
may I ask, is there an option for the featured slider not to push other content down after it loads? For example to have some kind of fixed height/width container for it. The purpose is to get a higher CLS (Cumulative Layout Shift) score for google as this one things is driving the score down a lot.
thank you
Peter
Hi,
Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:
@media only screen and (min-width: 1170px) {
.featured-area.featured-style-1 {
min-height: 527px;
}
}
Regards,
PenciDesign.