Hi
of course not,thats the code you have to add to remove the blue underline (and all the text styels for ther a tag). But the code you have attached can not be the complete code. In the link you can see:
class=" gwd-a-iffy gwd-a-u112" (just after target="_blank" at line 13)
If you go to the top of your document you should find something like (In code voew, press CTRL+F to search for gwd-a-iffy and gwd-a-u112, one at a time):
.gwd-a-u112 {
some codelines here
}
and also
.gwd-a-iffy {
some code lines
}
Here you should add text-decoration:one; like this:
.gwd-a-iffy {
text-decoration:one;
}
I don't know why this a tag has two classes though, but to add this in one of them should be enough
Whish you good luck:)
Svein-Tore