It's happening on every template I've tried. Now if you higlight them, you can see them...but otherwise, they are not visible.
It is also like that where I am using the vortex template. Also had the issue on
thedooleygang.com where I am using the sporticus template. Just haven't been able to figure out exactly how to fix it. I tried looking in the css for where it had text-decoration: underlined and a fff color assigned, but I think when I changed that, it did fix them, but also changed my menu links, which where fine the way they are. So is it perhaps a blanket statement that is assigning the style to a bunch of different areas and I need to pick the content item links out of the bunch and give them a different style? What confuses me though is why this isn't effecting anyone else.
Thanks,
David Henderson
Edit: From looking through my css files, it seems like maybe this is the area that is causing it. I found this in the tempalte.css file:
table.headlines div.moduletable h3,
.componentheading {
text-decoration: underline;
/* see style css */
}
a:link,
a:visited {
/* color: see style css */
}
a:hover {
color: #333;
text-decoration: underline;
}
And this in my style css:
table.headlines div.moduletable h3,
.componentheading {
color: #f26522;
}
a:link,
a:visited {
color: #ffffff;
}
So the question is..do I need to seperate one of those? And if so, which one is the one that is for links in content? None of them sound like they should be. Maybe it's the div.moduletable h3?