Notifications
Clear all

[Solved] Cannot change text decoration

3 Posts
2 Users
0 Likes
749 Views
Posts: 22
Topic starter
(@veramilo)
Eminent Member
Joined: 4 years ago

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;
}

Topic Tags
2 Replies
Alvina
Posts: 1869
Moderator
(@alvina)
Member
Joined: 5 years ago

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. 

Posts: 22
Topic starter
(@veramilo)
Eminent Member
Joined: 4 years ago

That worked (with a:link). Thank you!