-
How do I hide all the lightbox UI stuffs? I just want the video and the control bar, that’s it. Thanks.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
Foliovision › Forums › FV Player › How to … › Lightbox, hide all UI elements such as Next, Previous, Fullscreen, Thumbnails.
How do I hide all the lightbox UI stuffs? I just want the video and the control bar, that’s it. Thanks.
Hello bebopblues,
it depends on the order in which the CSS files load. So you can try to make the CSS selector more specific, like:
.fancybox-container .fancybox-button, .fancybox-container .fancybox-infobar { display: none; }
The play icon markup has changed a lot in FV Player 7. To hide it use:
.flowplayer.is-splash .fp-ui > .fp-play { display: none; }
Thanks,
Martin
Many thanks, Martin. That mostly worked, the only thing still there are the 1/8 and thumbnails button. Is there another line code to hide those? Thanks again.