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
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
Perfect, thanks.
/OPVAB
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