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

有帮助吗?

解决方案

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!

其他提示

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

许可以下: CC-BY-SA归因
scroll top