OOTB SharePoint will not allow you to remove the 1st tab on the main navigation through the UI. To do this you can simply use the following CSS below and add it to your custom CSS or use the CEWP page style method to just make the change just for that page.
If you look at the code, you will notice that each top navigation item has an ID.
- zz1_TopNavigationMenun0 (Home Tab)
- zz1_TopNavigationMenun1 (Tab #2)
- zz1_TopNavigationMenun2 (Tab #3)
- zz1_TopNavigationMenun... (Tab Etc)
Since the home tab is always #1 it is always given the ID of "0"
CSS Code:
#zz1_TopNavigationMenun0 {
display: none !important;
}
Comments
How to make different color tab.. for ex. i want to have Blue color for home tab, red color for Contact tab , Green color for News tab in top navigation in sharepoint... please help me
thanks
Got any answer for changing the color for diffrent tabs?
thanks,
karthi K
I posted this blog post on how to stylize each navigaiton tab individually: http://erikswenson.blogspot.com/2010/01/style-individual-navigation-items-for.html
I hope that answers your question.
1. Goto Site Settings > Look and Feel > Title and Discription
In the Title Section just give "Space"
2. with jQuery $(document).ready(function() {
$("a.static:first").hide();
});
Add a custom class to "TopNavigationMenuV4" on your master page
It can be anything, just add it to the CSSClass tag. Mine looks like this, with top-navigation-bar being my custom class:
CssClass="s4-tn top-navigation-bar"/>
Step 2
Add custom CSS to remove the first 'a' tag after the first 'li' tag
"div.top-navigation-bar ul.root > li > a {
display: none !important;
}"
The key for the removal was to specifically target the first li and first a. If you don't do this, you will have no nav bar. You need to put !important on it too because by default it will be overridden.