I'm using the wordpress "church theme" and all my link are not underline. In the style.css i can change the a: section but then all my link became underline even the ones in th top navbar, how can i make them underlined only on the posts? Appreciate the help allot
Can you lease give us link to your website. Try pointing out exactly on that a tag. For example if a tag is in div called with a class test1 you enter in css next line: or if you wanna go deeper and point out on some id that is called idtest and have class named test1 you will enter: Try it ...
Add the following code at the additional.css template: .postcontent a { color: #000000; text-decoration: underline } Code (markup): And replace #000000 with the actual color value that you want your links to show up.