Patrick R. Michaud wrote:
> You probably need a custom CSS entry that overrides text-decoration
> for <a> elements, and then use that.
>
> .nounderline, a.nounderline, .nounderline a { text-decoration=none; }
Should be a : not an =:
.nounderline, a.nounderline, .nounderline a { text-decoration:none; }