Hi, I have a page with 4 columns
every column has on top a video or an image
then text and button
On Desktop all 4 columns from left to right should have same size/position
Video size = 900x600 Pixel
Image size = 900x600 Pixel
video will be displayed smaller than image
I think this css is wrong:
.sppb-addon-video-local-source {
object-fit: contain;
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}
If I disable positon: absolute, the size will be displayed correct, but not the position
Can you please help me?