• Resolved shereew

    (@shereewalker)


    Hi there

    The plugin completely ignores all my css changes. Will you be adding a custom CSS box anytime soon?

    I want to edit the play button but it just will not work.

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Author plugins360

    (@plugins360)

    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.
Viewing 1 replies (of 1 total)
  • The topic ‘Edit CSS’ is closed to new replies.