Forum Replies Created
-
-
Hello Alan,
I’ve briefly checked your site and it appears that z-index values are wrongly applied within the theme.
Main content and the container with the sticky video share the same class
.prk_section
which hasz-index: 1;
. The container holding the sticky video should have a higher z-index.You could try the other way, removing that z-index on the
.prk_section
element. When I’ve tried that, the video appeared above content. You’d have to check, if it didn’t affect anything else on the site.thanks
ViktorHello Nicole,
if you need the players to have different colors, you have to wrap each in a DIV and give it a class or a unique ID. After that you can target each player it’s own styling as follows:
div.YOUR_CUSTOM_CLASS .flowplayer.skin-custom .fp-color, .flowplayer.skin-custom .fp-selected { background-color: #COLOR !important; } div.YOUR_CUSTOM_CLASS .flowplayer.skin-custom .fp-color-fill .svg-color, div.YOUR_CUSTOM_CLASS .flowplayer.skin-custom .fp-color-fill svg.fvp-icon, div.YOUR_CUSTOM_CLASS .flowplayer.skin-custom .fp-color-fill { fill: #COLOR !important; color: #COLOR !important; }
You have to place it in your theme stylesheet.
thanks
Viktor- This reply was modified 6 years ago by viktor.
6 years ago in reply to: Icon size problem on full screenHello Kim,
thanks for noticing, it’s a bug and we’ve just fixed it in our player, but also submitted it as a bug fix directly to flowplayer.org.
The fix will be in our next release which will come out today.
thanks
Viktor6 years ago in reply to: Problems with player alignmentHello Cebra,
thanks for getting back to us. The sceenshot won’t tell us what we need to know, is it possible to see the thing live? That way I can tell what is overriding the spacing, which we have in our player.
thanks
Viktor6 years ago in reply to: Problems with player alignmentAdditionally, here is our Doc file, which describes all what I’ve wrote above
https://foliovision.com/player/basic-setup/alignment-settingsthanks
Viktor6 years ago in reply to: Problems with player alignmentHello Cebra,
can you please doublecheck, how you’ve aligned the player? If you’ve selected it and just aligned to the left using the visual editor, then it was most probably wrapped in
<p>
tags with some alignleft class, which broke it like this.You can either align the video using the FV Player shortcode editor or just make sure you video shortcode contains this
align="left"
.If you don’t see an option to change video alignment in your shortcode editor, then you should first enable it in our plugin settings -> Post Interface Options -> Align -> (tick Yes).
thanks
ViktorHello Blayne,
we’ve adjusted the speed menu, so it has more space to breathe on smaller screens. The change will come in one of the upcoming releases.
thanks
Viktor6 years ago in reply to: YouTube Splash Screen on AndroidHello Pádraig,
I’ve briefly checked your site and tried to add back the CSS you’ve mentioned and the video was playing fine. Can you confirm it’s OK on your end?
thanks
Viktor6 years ago in reply to: Subtitle font sizeHello Cesar,
we’ve readjusted the subtitle sizing in fullscreen mode for a number of screen sizes (not all of them), the changes are already released in 7.1.11.726.BETA
thanks
ViktorHello Devin,
thanks for letting us know, we’ve fixed this and it will be in our next update.
Viktor
6 years ago in reply to: Form labels in editor are transparentHello Ferdinand,
thanks for the list. I see several plugins, which have special styling for forms (Ninja Forms, Woocommerce), but also a Pro plugins, to which we don’t have access to.
I’d definitely set up the test environment and see how it behaves with TwentySeventeen theme, or look up the form labels in any Developer Tool in a browser of your choice. The chance is great, that one of the plugins or the theme is adding the color white to form labels or even worse, impose an !important rule on such declaration.
If you’d like us to troubleshoot your theme with our player, we’re happy to do that as a Pro Support Incident.
thanks
Viktor6 years ago in reply to: Form labels in editor are transparentHello Debbie,
did you have time to check on the items I’ve wrote about in my last message?
thanks
Viktor6 years ago in reply to: ExoClick ads not working properly (18+ site)Hello Johnny,
you cannot edit what’s in wp-content/fv-flowplayer-custom as this CSS is generated from the player. You correctly mentioned, that it is generated each time you save your player settings.
So that means, you’d have to put your changes to a different location and target your elements better even without using the !important rule.
thanks
ViktorHello Blayne,
we’ve done some more work on this to make the speed selection menu more usable. Please check this example https://foliovision.com/player/advanced/speed-buttons?fvp_release=z093ja and let us know, if it works for you.
Besides of the speed menu, we’ve also adjusted the controlbar, so the items are tapped more easily on mobiles.
The changes will come in the next Beta release.
thanks
ViktorHello Radmitry,
our player already hides the controlbar in fullscreen after a while if you don’t move your cursor. Once you move it, it appears again. Hiding of the controlbar occurs only when the video is playing, just like YouTube and other players.
If you want to hide it also when the video is paused, this could be done via CSS using these classes:
.is-paused
.is-fullscreen
.is-mouseout
.is-mouseoverThanks
Viktor6 years ago in reply to: Form labels in editor are transparentHello Debbie,
it’s most probably a plugin or theme conflict. Can you send us a list of all plugins you are using and test if it’s happening when you have TwentySeventeen theme activated?
thanks
Viktor
CSS Designer7 years ago in reply to: W3C Validation ErrorHello Rolf,
as I can see, those are properties, which target older browsers and they all have correct vendor prefixes. On the other hand, vendor prefixes are treated as non-standard and therefore technically invalid CSS.
The are tolerated and widely used, so even the validator itself now includes an option for Vendor Extensions (under More Options box). There you can switch errors into warnings, so the site validates tentatively.
We will keep these vendor prefixes so our plugin is backwards compatible.
thanks
Viktor7 years ago in reply to: FVPro > Sticky > Z-Index wrongHello Dan,
not sure what happened on your end, because this issue is not related to our player or it’s updates.
But if you put z-index: 999 on the first.et_pb_row
container, the video moves to the top.thanks
Viktor7 years ago in reply to: Use colorbox link in theme/template7 years ago in reply to: Align SettingsHello Pesi,
I’ve checked these two links
http://tlabcvideos.org/wp/archived-videos/2012-09-21/
http://tlabcvideos.org/wp/archived-videos/hd-samples/and found, that player settings 720×480 don’t match a wide site like this (1200px). The easiest solution is to use a bigger player size 1280×720 with no alignment setting. This way all the place gets filled out nicely and without gaps.
(Your HD sample has currently align:right setting, you need to remove that).Thanks,
ViktorHello William,
I wouldn’t use border-image in CSS, as it has many issues and the results might be different in each browser. And since it’s important, that the video fits nicely into the graphic, it would be best to wrap it in a DIV that has your custom background. Than you can use background-size: cover; so it spreads nicely around the whole player. Since you know the size of the player, you can easily create that graphic to fit pixel perfect. The wrapping DIV itself can include some padding around, this way you can center the player vertically and horizontally.
thanks
vk9 years ago in reply to: Make Lightbox Area TransparentHello Steve,
use !important on both of these and move the code into your theme stylesheet. This way you don’t need to worry about future plugin updates. And to save some space, we can make the code even shorter:
.flowplayer.lightbox-starter .fp-ui { background: transparent; } .flowplayer.lightbox-starter { background-color: transparent !important; }
thanks
vk9 years ago in reply to: Add shortcode to Genesis theme archives?Hello James,
if we talk about this field https://wpbeaches.com/wp-content/uploads/2014/09/genesis-category-header-text.png, then archive intro text accepts only HTML, not PHP. That’s the reason, why your code doesn’t work there.
A similar filter like the one below works for enabling shortcodes in text widgets, so after a small change it might also work here. Try it out and let me know.
add_filter('genesis_do_taxonomy_title_description', 'do_shortcode');
thanks
vk9 years ago in reply to: Subtitles placed below the playerHello Julio,
you might want to try this short CSS code to put the captions below the video. Although, in fullscreen mode they will be in their default location – inside the video.
/* Captions under the player */ .flowplayer { margin-bottom: 80px !important; } .flowplayer.is-fullscreen { margin-bottom: 28px !important; } .flowplayer .fp-subtitle { bottom: -58px !important; background-color: #000; display: block; } .flowplayer.is-fullscreen .fp-subtitle { bottom: -28px !important; background-color: transparent; }
thanks
vk- This reply was modified 8 years, 6 months ago by viktor.
Hello drfingerless,
sorry for the longer wait, I was looking at it just today, but so far haven’t been able to find any CSS related issue. I’d look further in conflicts between JS.thanks
vk9 years ago in reply to: Styling AB LoopHello Sam,
the topmost parent container for the AB loop part is .fv-ab-loop and .active is added if it’s turned on. The AB progress bar shares the same width, height and color with the timeline progress bar and it’s class is .noUi-background.
If you’d like to remove the two letters, just use this code
.noUi-handle.noUi-handle-lower::after, .noUi-handle.noUi-handle-upper::after { display: none; }
thanks
vk9 years ago in reply to: Looping IdeaHello John,
since this is an automatically generated list, there are not many options you can try. If you don’t mind having them in unordered, then giving each LI float:left and width: 50% would make it work. If you want to have the items go in the first column and after one half following in the second one, then it’s probably just CSS3 column-count property.
The downside is it only makes sense to use it on shorter lists and browser support is not really the best one.UL LI { -moz-column-count: 2; -moz-column-gap: 20px; -webkit-column-count: 2; -webkit-column-gap: 20px; column-count: 2; column-gap: 20px; }
or see it in action here JSfiddle http://jsfiddle.net/qUAT6/1356/
Thanks
vk9 years ago in reply to: Full Screen Mode TransitionHello Victor,
I’ve checked our FV Player Pro against http://www.jwplayer.com/products/jwplayer/ and http://videojs.com/.
On desktop with Firefox and Chrome (both latest ones):
– all players had more or less the same transition
– on Chrome JW Player was blinking and jumping all mad
– in general Video JS was okOn mobile (latest Sony Xperia M4 with Android Lollipop 5.0):
– JW Player was jumping when going from one state to another
– same for FV Player
– Video JS was the smoothest of allPlus, on mobile if you were in fullscreen and wanted to go back, one tap paused the video on FV Player, but not JW and Video JS.
Only thing I found is that the transition itself is not much different on our FV Player, it’s just maybe a bit faster than on the other too.
I’ve also tested you your site (example http://firstclasstracks.com/video/dounia-im-not-the-only-one-sam-smith-cover/) on FF and Chrome. Firefox was good, but Chrome was jumping badly. On CSS level, I’ve noticed, that the actual video is placed in a div.player container, that has various properties in bootstrap.min.css. It’s height is set to zero, there is position relative and some others too. It might be, that this is causing some of the trouble you’ve seen. You might want to check these out and see if the fullscreen transition improved.
thanks
vk9 years ago in reply to: lightbox borderGlad I could help. Have a nice day too!
9 years ago in reply to: lightbox borderHi Tim,
I’d suggest you place this code just at the end your your stylesheet file
#fv_player_pro_boxMiddleLeft, #fv_player_pro_boxMiddleRight, #fv_player_pro_boxTopLeft, #fv_player_pro_boxTopRight, #fv_player_pro_boxBottomLeft, #fv_player_pro_boxBottomRight { width: 0 !important; }
#fv_player_pro_boxTopCenter, #fv_player_pro_boxTopLeft, #fv_player_pro_boxTopRight { height: 0 !important; }
#fv_player_pro_boxBottomLeft, #fv_player_pro_boxBottomRight, #fv_player_pro_boxBottomCenter { height: 0 !important; }
#fv_player_pro_boxContent { background: transparent !important; }
.flowplayer.lightbox-starter .fp-ui { background: transparent !important; }
.flowplayer.lightbox-starter { background-color: transparent !important; }
#fv_player_pro_colorbox, #fv_player_pro_boxOverlay, #fv_player_pro_boxWrapper, #fv_player_pro_boxContent {overflow: hidden !important; }
Sorry for the inconvenience, but we had to change the lightbox naming classes to exclude future problems. I’ve tested the above code on your test page and it removed the border together with the close button.
Please let me know, once you update your stylesheet and cleared the cache so I can check back.
thanks
vk9 years ago in reply to: lightbox borderHi Tim,
thanks for the link, but after your last message I still can see the white box around your video. Tried on various browsers and it’s the same everywhere. If you have some kind of a caching plugin installed, please try to clear it’s cache manually and let me know so I can recheck.
The code I gave you has to go into your theme stylesheet (https://cdn.foliovision.com/wp-content/themes/Newspaper/style.css).
thanks
vk9 years ago in reply to: lightbox borderHi Tim,
although I can reproduce a white frame around a videos, it would really help to make my answer more accurate if you’d provide a URL.
It’s not a regular border, that could be just switched off, but with help of this code you can hide the white box and leave just the video visible.
#cboxMiddleLeft, #cboxMiddleRight, #cboxTopLeft, #cboxTopRight, #cboxBottomLeft, #cboxBottomRight { width: 0; }
#cboxTopCenter, #cboxTopLeft, #cboxTopRight { height: 0; }
#cboxBottomLeft, #cboxBottomRight, #cboxBottomCenter { height: 0; }
#cboxContent { background: transparent none repeat scroll 0 0; }
.flowplayer.lightbox-starter .fp-ui { background: transparent none repeat scroll 0 0; }
.flowplayer.lightbox-starter { background-color: transparent !important; }
#colorbox, #cboxOverlay, #cboxWrapper {overlay: hidden;}
If the code doesn’t work, you might have to add !important declatarions to all of the above instances.
thanks