AI Search
Classic Search
Notifications
Clear all
May 21, 2020 1:07 am
I’m trying to make visited links in only the admin note to appear with underlines but nothing I tried works, including adding !important. I can change the text color but not decoration. What am I doing wrong?
#wpforo #wpforo-wrap .wpforo-admin-note a:visited {
color: #008080;
text-decoration: underline;
}
2 Replies
May 21, 2020 1:43 pm
Hi @veramilo,
Please navigate to the Dashboard > Forums > Settings > Styles admin page, put the following CSS code in the "Custom CSS Code" textarea:
#wpforo #wpforo-wrap .wpforo-admin-note p{
text-decoration: underline;
}
Please don't forget to delete all caches and press Ctrl+F5 (twice) on the frontend before checking to reload the updated CSS file.
May 23, 2020 1:44 pm
That worked (with a:link). Thank you!