jrVideo
Using Jamroom
It seems like it is set up only for 270p and 360p.
I added the following two sections for 480p
.video_blue_monday_player div.jp-audio {
width:100%;
}
.video_blue_monday_player div.jp-video-270p {
width:100%;
}
.video_blue_monday_player div.jp-video-360p {
width:100%;
}
.video_blue_monday_player div.jp-video-480p {
width:100%;
}
and
.video_blue_monday_player div.jp-video-270p div.jp-video-play {
margin-top:-270px;
height:270px;
}
.video_blue_monday_player div.jp-video-360p div.jp-video-play {
margin-top:-360px;
height:360px;
}
.video_blue_monday_player div.jp-video-480p div.jp-video-play {
margin-top:-480px;
height:480px;
}
.video_blue_monday_player div.jp-video-full div.jp-video-play {
height:100%;
}
These seem to be the only places the other sizes are mentioned in that css file.
Yet it does not change anything on front end. Is there possibly another setting that has to be set on a different file?
Thanks