Hi, I hope somebody can help me.
I wanted to underline only the hyperlinks in the body text of my posts/pages/widgets.
In the style.css I changed some code, but now all hyper links are underlined (menu/titles/footer/header). đ
I changed this part of the code:
a:active, a:focus { /* IE remove focus */ outline: none; } a { color: #4db2ec; text-decoration: underline !important; } a:hover { text-decoration: underline; } ins { background: white; text-decoration: underline; }
What did I do wrong or do I have to change?
Kind regards,
Bernard
Website: https://www.brazilie.rocks
Hi Bogdan,
Thanks a lot for helping me out. It worked for post and pages, but It didn’t work for text in widgets/sidebars.
I did this:
.td-post-content a{
text-decoration:underline!important;
}
.td-page-content a{
text-decoration:underline!important;
}
.td-widgets-content a{
text-decoration:underline!important;
}
Is there another code I can use for text in widgets/sidebar?
Kind regards,
Bernard
Hello
If you want to apply the same rule for Widgets section, you should use the class below and add the following properly, like this ->
.td-pb-span4 a {
text-decoration:underline!important;
}
The result is here -> https://www.screencast.com/t/ArEMDi5R6
Thanks for your understanding!