Front page › Forums › CodeCanyon products › WordPress YouTube video post plugin › Video display issue
- This topic has 6 replies, 2 voices, and was last updated 7 years, 10 months ago by
Constantin.
-
AuthorPosts
-
July 15, 2014 at 4:46 PM #358
dljohnston
ParticipantHello, I recent purchased and installed this product. For some reason videos are all messed up. See the screen shot below.
http://prntscr.com/42x03lJuly 15, 2014 at 5:07 PM #359Constantin
KeymasterHi,
This is a CSS issue, you will need to style the iframe accordingly. Most likely your WP theme is styling the iframe for videos but with this plugin you don’t need to do this. Try the following CSS, maybe it helps:
.ccb_single_video_player iframe,
ccb_single_video_player object{
width:100%;
height:100%;
padding:0px;
margin:0px;
}
Unless I can actually see and debug your page, there’s not much else that I can help you with. If you can give me a link to your page, I might be able to provide you with some more accurate instructions to solve this.
July 15, 2014 at 5:48 PM #360dljohnston
ParticipantHello. Tried that with no success.
http://mwexclusive.com/event-coverage/twin-turbo-gallardo-lp570-4-loses-control/
password is 123July 15, 2014 at 6:05 PM #361Constantin
KeymasterThe problem is with height, your styling sets it auto. Try adding important to the CSS above, should be like this:
.ccb_single_video_player iframe,
.ccb_single_video_player object{
width:100%;
height:100%!important;
padding:0px;
margin:0px;
}
If you pasted the code above, I just realised I missed a dot for object element. This one should do the trick.
July 15, 2014 at 7:35 PM #362dljohnston
ParticipantIt worked! Thanks a ton
July 15, 2014 at 9:07 PM #363dljohnston
ParticipantOddly enough, now all of the posts are throwing 404 errors randomly. that entire category shows 404s
July 22, 2014 at 11:12 AM #364Constantin
KeymasterTry to refresh the permalinks from WP admin-> Settings->Permalinks. Just save them without changing anything.
-
AuthorPosts
- You must be logged in to reply to this topic.