1
vote
Add option for different Object fits for the video background on the Row Layout
The default object-fit for the video backgrounds of a Row Layout block is "cover". Typically, it is expected for backgrounds to cover the full row's width and height.
However, when you like the video to show the whole content custom CSS code is needed unless I create a new video a new video file where there is enough whitespace around.
This CSS solves the issue, but it requires CSS knowledge or a reach out to Kadence support
.kb-blocks-bg-video-container .kb-blocks-bg-video {
height: 100% !important;
width: 100% !important;
min-width: 50% !important;
max-width: 100%;
object-fit: contain;
}
Best,
Chrilles