I can't for the life of me think why cutenews insists on changing the styles of my links 
http://touchlinetactics.2m2l.net/unlive/index.php
I want all links in the main body in the main body to have no underline until hovered, and i've got this in my CSS file:
It's fine. But cutenews seems to randomly underline links that i put in a news post. Hmnkay.
Try to wangle it by wrapping all news in a .cutenews div.:
And CSS (external file):
But oh no. It won't work!!
Any ideas?

http://touchlinetactics.2m2l.net/unlive/index.php
I want all links in the main body in the main body to have no underline until hovered, and i've got this in my CSS file:
Code:
#content #main a:link { color: #007b32; text-decoration: none;}
#content #main a:hover, a:visited, a:active { color: #007b32; border-bottom: 1px solid #007b32;}
It's fine. But cutenews seems to randomly underline links that i put in a news post. Hmnkay.
Try to wangle it by wrapping all news in a .cutenews div.:
Code:
<div class="cutenews">
<h3>{title}</h3>
<p>{short-story}</p>
<p class="news-bottom">Posted on {date} by {author} | [full-link]Read more �[/full-link] [com-link]{comments-num} Comments[/com-link]</p>
</div>
And CSS (external file):
Code:
.news a:link { color: #007b32; border: 0; text-decoration: none;}
.news a:hover, a:visited, a:active { color: #007b32; border-bottom: 1px solid #007b32;}
But oh no. It won't work!!
Any ideas?

