All anchor links are not underlined

Permalink
I'm hoping there's an easy solution to this... I'm trying to set up a site and links in the content are not all showing up as underlined. Some are and some are not. I can't find any css that is eliminating the underline or differences in coding the anchors. The page is here:
http://gospelriver.mysitecreations.com/...
All the "listen"s should be underlined links. I even tried adding text-decoration:underline; to the css, no luck... any ideas? Thanks!!!

Edit: I note that the theme I'm editing (Touching) has a customize option that includes links. However, this setting does not seem to affect any of my CSS. I'm not sure where these settings are placed...
I also note that in Internet Explorer, almost all the links are not underlined, whereas more are underlined in Firefox... ugh!

 
nbruley replied on at Permalink Best Answer Reply
Just noticed that my vertical menu css text decorations was set to off. I commented that out just to try and it fixed it. Looks like that wasn't set up too well in the theme...

Problem Solved.
maggiemsgw replied on at Permalink Reply
Can someone look at my page and tell me why the bullet points are underlined?

the first 2 have not links and the other 3 do. but i want the bullet points to have no underlines and the links should be the same as the paragraph links

bullet points are close to the bottom.

http://66.147.244.249/~csfinfoo/about-us/letters-chairman/2012-lett...



Thanks
Maggie
alenb replied on at Permalink Reply
alenb
This may sound silly but have you tried setting
text-decoration: none;
on the
li
elements?
maggiemsgw replied on at Permalink Reply 1 Attachment
This is what i have in my typography.css

ul
{
{list-style-type: circle;}
padding:0px;
margin:0px;
}
li
{
padding-left:6px;
font-family: Arial, sans-serif !important;
font-size: 14px;
font-weight: normal;
line-height: 20px;
color: #000000;
padding-bottom: 4px;
text-decoration: none !important; }
}

I even added "important" to override anything else.

I've spent a whole day on this yesterday and still haven't figured it out.

Attached is the complete file
madeforspace replied on at Permalink Reply
madeforspace
I think it is being overridden by the UL CSS which says:
.menu_center UL {
line-height: 20px;
text-decoration: underline;
madeforspace replied on at Permalink Reply
madeforspace
It's in your typography.css on line 179

Hope that helps