I guess you should be adding your custom CSS code under your theme customizer. The player is an Iframe. So, none of your custom CSS code added here will work.
Solution:
You should use the “aiovg_player_head” hook to add your custom CSS code inside the player Iframe.
Example:
Please try using the following code in your theme’s functions.php file.
function aiovg_custom_player_css() {
?>
<style type="text/css">
/** ADD YOUR CUSTOM CSS STYLES HERE **/
</style>
<?php
}
add_action( 'aiovg_player_head', 'aiovg_custom_player_css' );
Hope, this solved your issue!
-
This reply was modified 5 years, 8 months ago by plugins360.
-
This reply was modified 5 years, 8 months ago by plugins360.