Search
Where's Ann?

She's on the move...

02.02.2012: Hosting a Privacy After Hours event in Harrisburg.

02.16.2012: Co-presenting Virtual Security: Best Practices for Remote Workers.

03.09.2012: Offering tips on handling conflict at the Society for Technical Communication's Mid-Atlantic Conference.

03.21.2012: Presenting Virtual Success: Best Practices for the Remote Worker for STC's New England Chapter.

05.19-05.24.2012:  Attending and presenting at the Annual Summit of the Society for Technical Communication, Chicago, IL. Also sponsoring an event featuring the Rough Drafts, STC's homegrown band. 

Connect to Ann!
Blogger login
« History of the term "Godspeed" | Main | Are blogs facing extinction? »
Thursday
Jun182009

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.