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:
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:
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>
Its done :)
Hi....How to hide all the Global navigation Items using Jquery?
ReplyDelete