Forum Moderators: open
1) UltraDev isn't doing it. Underlines are the default display for hyperlinks in a web browser.
2) You can disable underlines on hyperlinks by using CSS, as in:
<a href="foo.htm" style="text-decoration: none;">I'm a hyperlink</a>
or by putting:
<style type="text/css">
a {
text-decoration: none;
}
</style>
in the head of the document. Or, using UltraDev's WYSIWYG environment:
1) Open Window > CSS Styles
2) Click the "New Style" icon
3) Choose "Redefine an HTML tag," select "a" from the pull-down list, then click OK
4) Select the "Type" category and check the "none" checkbox under "Decoration"
5) Click OK and you're done.