Question

I enabled the SharePoint Server Publishing feature and now it change my navigation bar, putting the selected site in the first order, but I don't want my navigation bar changes the order of the links. I can't edit the order because it does not appear when i click in the EDIT LINKS.

How can I fix that?

enter image description here

Était-ce utile?

La solution

A solution would be :

  1. add a script editor web part to your page
  2. copy the following code into the script editor

SharePoint 2013 code

.ms-core-listMenu-horizontalBox li.static > a{ 
     display: none !important;
    }
 .ms-core-listMenu-horizontalBox li.static > ul a{ 
    display: block !important;
    }

SharePoint 2010 code

    .s4-tn li.static > a{ 
 display: none !important; 
 } 
 .s4-tn li.static > ul a{ 
 display: block !important; 
 } 
  1. In Site Settings -- Navigation create a new link to the site enter image description here

Hope this helps!

Autres conseils

You can go to site setting and navigation setting. In this page you have the option to rearrange links are per your requirements.

Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top