Now, you can probably remove it programatically with a solution like this, but I just wanted to do it with some style tweaks.
So just stick this in your custom css file:
#s4-topheader2 a.static.menu-item[accesskey="1"] { display: none !important; }
That works for most browsers but not IE6 (spit) cos of it's CSS2 failitude. For that you can use some sweet jQuery in a jiffy:
<script type="text/javascript">
$(function () {
$('#s4-topheader2 a.static.menu-item:first').hide();
});
</script>
Dear Sir, i have spend hours for searching for this. Thank you so mutch. Regards, Peter from Belgium
ReplyDeletehow to change name of first item???
ReplyDeleteHi,
ReplyDeleteI have a situation where the site title replaced my Home tab. How do get rid of this SharePoint faltitude.
Thanks,