Skip to content

Snippet: Display Stretch & Full-Height Rows on Site Render

By default stretch rows are hidden when the site is first loaded to prevent the "bounce" affect when the row becomes stretched (it uses javascript to stretch so it can't run until the site is rendered). If you want though you can add this CSS to your site to have the rows visible by default as the site renders.

.wpex-vc-row-stretched,
.vc_row-o-full-height {
    visibility: visible !important;
}
Back To Top