« History of the term "Godspeed" | Main | Are blogs facing extinction? »
Thursday
18Jun2009

Removing the Underline From a Link in SharePoint

For various reasons, you might not want a link in SharePoint to be underlined.

It's easy to get rid of it:

Open the page containing the link and select Edit > Edit HTML Source.

Find the html code for the link and add STYLE="text-decoration:none" to the link code.

For example, if your link code looks like this:

<A HREF="link.html">

It would look like this afterwards:

<A STYLE="text-decoration:none" HREF="link.html">

 

After you save the changes, the link should no longer be underlined.