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!
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!
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
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
This may sound silly but have you tried setting on the elements?
text-decoration: none;
li
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
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
I think it is being overridden by the UL CSS which says:
.menu_center UL {
line-height: 20px;
text-decoration: underline;
.menu_center UL {
line-height: 20px;
text-decoration: underline;
It's in your typography.css on line 179
Hope that helps
Hope that helps
Problem Solved.