How do I remove the underline from links in all posts? I have open up style.css and replace:
a{
text-decoration: underline;
}
with:
a{
text-decoration: none;
}
But it dosent work.
How do I remove the underline from links in all posts? I have open up style.css and replace:
a{
text-decoration: underline;
}
with:
a{
text-decoration: none;
}
But it dosent work.
Hi sarastenberg,
Try to use this code instead:
a {
text-decoration: none !important;
}
Hope this helps. :)
Regards,
Ismael
It worked :) Thank you so much, you are the best!!
This topic has been closed to new replies.