Archived topic
WP Glossary integration question
4 replies · Started by Jimi on May 22, 2021
Hi,
I am using WP Glossary encyclopedia plugin. I needed some CSS to make some of the functions work. And thats working now.
But there is one thing missing. The plugin auto creates links if the word is part of the glossary. And beside that link, there was supposed to be a small question, so that when people hover over that question mark they could see that this is part of our glossary.
Is that also a CSS fix ? Or should I contact their support ?
Thanks,
Ps: An example of a page that has these internal glossary links can be seen here: https://onlinemarketingbureauet.dk/ordbog/seo/
Hi there,
i can't see any CSS or script that would add the ? to the HTML.
Might be worth checking with their support.
If not we can do something like this:
a.wpg-linkify:after {
content: '\003F';
font-size: 14px;
line-height:16px;
width: 16px;
justify-content: center;
align-items: center;
display: inline-flex;
border-radius: 12px;
background-color: #ccc;
color: #fff;
margin-left: 5px;
}
It's amazing. Thanks :)
You're welcome