I read something about child themes but honestly have no idea what that means. If there is an easy way to remove permalinks from my blog page posts when you scroll over them; like a line of CSS i would super appreciate it!! thank you
Hey Laura,
Thanks for writing in!
Are you trying to remove this one?

If that is the case, please add this JS code in the Theme Options > Global JS (http://prntscr.com/evswzb)
(function($) {
$('.entry-title a ').attr('title', '');
})(jQuery);
We would love to know if this has worked for you. Thank you.
no sorry im actually just trying to remove this little symbol:

Hi Laura,
Please kindly add the CSS code below to WordPress Dashboard > X > Theme Options > CSS:
.blog a.entry-thumb {
pointer-events: none;
}
Thank you.
great that removed it thank you. is it possible to remove the icon and still have the featured image clickable?
Hi Laura,
Yes, you can. Please remove the code given by @Christopher and then replace it with this code:
.entry-thumb:before {
display: none;
}
This code will remove the icon and make the featured image remain clickable.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.