Good morrow!
https://1up.wtf/community
I'm struggling to get the videos in the JomSocial wall streams to display in a responsive manner.
In the above screenshot, the video thumbnail is displaying correctly, in the correct aspect ratio.
However, as you can see above, once you hit the play button, the height immediately resizes and breaks the aspect ratio.
Here's the CSS I've currently implemented for responsive video:
/* FULL SIZE JS VIDEOS & IMAGES */
@media only screen and (min-width: 481px){
.joms-media--video, .joms-media--album {
max-width: 100%;
height: auto;
}}
.joms-list--half .joms-list__item {
width: 100% !important;
height: auto;
}
@media only screen and (min-width: 481px){
.joms-media--image, .joms-media--images, .joms-media--event {
max-width: 100% !important;
height: auto;
}
Any help you could give would be greatly appreciated.
Thank you!