Hi,
I don’t like link icon which shows when hovering over a featured image,
so I have used to following CSS code to remove it from the main blog menu and just change the image to have an opacity of 0.90, however, when searching, the icon is still showing.
.blog a.entry-thumb:hover:before {
opacity: 0 !important;
}
.blog a.entry-thumb:hover img {
opacity: 0.90 !important;
}
.search-results .entry-featured a:hover:before {
display: none;
opacity: 0.50;
}
also is there a way to remove the link text when highlighting over links?
its currently showing “Permalink To:[blog post name]”
edit: I’m wondering if the permalink to the issue should be dedicated to a whole new post as I would want it removed from all links.
many thanks.