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?
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
Thank you, I’ve removed the permanent link using
.main-title.entry-title {
pointer-events: none;
}
Hi!
Please edit your color section element and set background image attachment to scroll
Best regards,
Yigit
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.