H5p Video too large - Moodle 3.9.1

Re: H5p Video too large - Moodle 3.9.1

by Dave Emsley -
Number of replies: 2
If anyone else has the same issue it is .h5p-iframe-wrapper that needs changing.
Average of ratings: Useful (1)
In reply to Dave Emsley

Re: H5p Video too large - Moodle 3.9.1

by Peter Schmitz -
Hi Dave, many people seem to have that issue, the video is an absolute juggernaut. Could you elaborate on what you mean by * .h5p-iframe-wrapper needs changeing*. I had figured that this is the culprit but I am lost on what to do to it. So far no matter what I do to it, it doesn't make any difference. I'd just like it alligned and centered and civil, like every other video player in the universe.

.h5p-iframe-wrapper.h5p-semi-fullscreen {
width: auto;
height: auto;
background: black;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 100001;
}
.h5p-iframe-wrapper.h5p-semi-fullscreen .buttons {
position: absolute;
top: 0;
right: 0;
z-index: 20;
}
.h5p-iframe-wrapper iframe.h5p-iframe {
/* Hack for IOS landscape / portrait */
width: 10px;
min-width: 50%;
*width: 50%;
/* End of hack */
height: 100%;
z-index: 10;
overflow: hidden;
border: 0;
display: block;
}