theme puts line through hyper link

Posted in: Newspaper
Post count: 15

Hello,

I noticed that the theme seems to put a line through the hyperlink on some posts and not on others. See this page: https://www.matsati.com/index.php/how-genes-and-memory-formation-effect-the-battle-between-sin-and-righteousness/

I look at the page source and find the link as follows:

a href=”https://undark.org/article/learning-to-read-the-brains-temporary-records/&#8221; class=”broken link”>Learning to Read the Brain’s Temporary Records</a

When I edit the post and look at the html, the ‘class=”broken link”‘ is not there but is added later. Seems as if the theme is adding this class to the link. How do I use custom css to prevent this from happening?

Thanks for your help,


Duane

  • This topic was modified 7 years by matsati.
  • This topic was modified 7 years by matsati.
Post count: 22421

hello,
It is not the theme adding the style mentioned. The implementation comes from another source. We do not have any “broken link” class in our theme that can affect this css.
Your links have a class set to them marking them as a broken link and then the css apllies the strike through.
You can either remove the class of broken_link from your links or use this css to remove the strike-through:

.broken_link, a.broken_link {
text-decoration: none;
}

The code can be added in the theme panel under custom code.

Thanks.

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.