Pergunta

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

Foi útil?

Solução

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!

Outras dicas

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a sharepoint.stackexchange
scroll top