Thursday
18Jun2009
Removing the Underline From a Link in SharePoint
Thursday, June 18, 2009 at 07:22PM 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.
Lois Shank | Comments Off |