May 20, 2020 9:07 pm
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 9:43 am
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 9:44 am
That worked (with a:link). Thank you!