[ad_1]
[ad_2]
Hi! I'm trying to figure out how to make it so all of the links on my website are underlined. All of them besides the Table of Contents links that go to a different part of the page. I saw somewhere online where they said to add the following code, but I've tried to add it in the header and footer with no luck.
a { text-decoration: underline; }

p a{ text-decoration:underline!important}
put that in ur main css file
There may be a theme setting for this. What theme is it?
You likely need to add more specificity to the rule, as the theme would already be declaring a rule for ‘a’. (don’t use !important – that’s not the right way to write CSS)
Use DevTools to inspect the css that’s being applied and create a rule to override it. If you don’t know what that means, share your url a I’ll create one for you.
Post a link to your site, and somebody can tell you exactly what to do.