Video - size problem

Noticed when setting the video width and height in the builder element it is applied to the iframe appropriately but the css in shortcodes.css overrides this making the video absolute positioned and 100% width/height of the iframe scaling the video to be as large as the container which is good for mobile but not always desktop.

.content_video.iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

Of course this can be overridden with custom css but thought I'd mention this.

Comments

Sign In or Register to comment.