Change permalink image

Hi

I found how to remove a permalin image here:

https://theme.co/apex/forum/t/blog-page-hover-shows-permalink-to/10000

I would like to change the permalink hover image from the link image to a custom image that contains text.

This is my site

http://keighleyclay.com/home_2/

I would also like to be able to

  1. remove the title (Home_2) and or change it
  2. remove the line through the title

Can you help please?

Thanks in advance

Chris

Hi there,

Please kindly add the code below to X > Launch > Options > CSS:

.entry-thumb:before {
    content: '';
    background: url(http://keighleyclay.com/wp-content/uploads/2017/12/print-1a_thumb.png) no-repeat center center;
    background-size: contain;
}

Change http://keighleyclay.com/wp-content/uploads/2017/12/print-1a_thumb.png with the URL of the image you want to replace with the permalink icon.

The Home_2 is the title of the page that you have in the dashboard, change that and the title will be changed.

To remove the line through you will need to add the CSS code below to X > Launch > Options > CSS:

.h-landmark span:before, .h-landmark span:after,
.h-landmark span:before, .h-landmark span:before {
    display: none;
}

Thank you.

Awesome,

It worked perfectly thank you

You’re welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.