Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #591116

    Hi, i’ve just noticed some hover text appears when I hover over the page title – Permanent Link: page name – how can I get rid of this?

    #591991

    Hi andrea!

    Thank you for using Enfold.

    This is the browser’s default hover function. If you want to disable it, you have to remove the element’s title attribute. Add this in the functions.php file:

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){
    	jQuery('.entry-title a').removeAttr('title');       
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Best regards,
    Ismael

    #592022

    Thank you, I’ve removed the permanent link using
    .main-title.entry-title {
    pointer-events: none;
    }

    #592110

    Hi!

    Please edit your color section element and set background image attachment to scroll

    Best regards,
    Yigit

    #592571

    There is no background image set on the colour section. Also, we have the same issue with shadowing on the title bar on other pages.

    #594290

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    Regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.