In SharePoint 2010, the top-left link is "My Site". How can I hide or customize this link to allow me to put in my own link in the very top-left?
I know I can use Personalization Site Links to add an item to the end, or edit the Top Link Bar in the MySite to add a link as the second link, but I'd like to edit the very first link (without resorting to Master Page changes etc).
My current solution is to add a Content Editor and paste in the following CSS, but I'd welcome other suggestions:
<style type="text/css">
DIV.ms-globalnavicon {
DISPLAY: none
}
</style>
Thanks.