Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1224786

    Hi.
    The copyright span class =”copyright”, but the Avia3-menu has span class=”avia-menu-text”.
    How do i get rid of the “avia-menu-text” class from the Avia3-menu? I want the Avia3-menu to have the same CSS as “copyright”.

    Thanks,
    OPVAB

    #1224795

    Hey,

    Please add following code to bottom of Functions.php file in Appearance > Editor

    function change_av3menu_class(){
    ?>
    <script>
    jQuery(document).ready(function(){
        jQuery("#avia3-menu a>span").removeClass("avia-menu-text").addClass("copyright");
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'change_av3menu_class');

    Best regards,
    Yigit

    #1224797

    Perfect, thanks.
    /OPVAB

    #1224825

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/

    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Change span class i Footer’ is closed to new replies.