Skip to main content
Known Participant
November 19, 2013
Answered

underlined hyperlinks

  • November 19, 2013
  • 2 replies
  • 373 views

is there any way that i can do away with the underlining on the hyperlinks on any page? I found some simple style scripting that i added to the html code, but when i saved the page, the code changed and the links stayed underlined.

this is what i added into the HEAD section of the html:

<STYLE>

<!--

A{text-decoration:none}

-->

</STYLE>

This topic has been closed for replies.
Correct answer Jeff_Coatsworth

You may have better luck changing the CSS (or editing the HTML post-generation)

2 replies

Willam van Weelden
Inspiring
November 19, 2013

Try adding this to your CSS:

a { text-decoration: none !important; }

This disables the underline for all links in your topic.

Greet,

Willam

Jeff_Coatsworth
Community Expert
Jeff_CoatsworthCommunity ExpertCorrect answer
Community Expert
November 19, 2013

You may have better luck changing the CSS (or editing the HTML post-generation)

nulupbezAuthor
Known Participant
November 20, 2013

thank you - you're right, the style sheets are the key.