Forum Moderators: open

Message Too Old, No Replies

How do i get rid of the underline of my link in ultradev

this may be simple but please help

         

midi25

10:10 pm on May 1, 2002 (gmt 0)

10+ Year Member



Hi am new to ultradev and want to get rid of the annoying underlining it keeps putting on my hyperlinks. how do i get rid of this thanks

rogerd

10:15 pm on May 1, 2002 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



Use style sheet settings and set text decoration to "none".

moonbiter

10:25 pm on May 1, 2002 (gmt 0)

10+ Year Member



If you are asking what I think you are asking, then the answer would be twofold:

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.

midi25

10:29 pm on May 1, 2002 (gmt 0)

10+ Year Member



thanks guys got it sorted. and looking good.

may need a bit of further help from you good re: ultra dev in the future. i,m more of a Go Live man. just getting used to all the ultra features