SharePoint 2013 - Global(Top)ナビゲーション - 「ホーム」としてリストされていますが、サブサイトの名前を表示する

sharepoint.stackexchange https://sharepoint.stackexchange.com//questions/95047

  •  10-12-2019
  •  | 
  •  

質問

誰かがこれに答えるのを助けることを願っています。

ページのタイトルは家にあり、最初のトップナビゲーションアイテムが 'home' になるほしい

サブサイトのタイトルを変更した場合は、ホームページの上部NAVのタイトルを「ホーム」に変更します。

これが明確であることを願っています。誰もが助けになることができますか?

Enter Image説明

役に立ちましたか?

解決

I found the answer here: http://bemusedbi.blogspot.com/2013/04/hiding-home-link-in-sharepoint-2013-top.html

/* deletes the top nav left side 'Home' button do not delete*/

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

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

他のヒント

You can achieve this by using CSS ':after' selector and 'content' property.

#DeltaTopNavigation ul#zz10_RootAspMenu > li.static > a > span > span:after {
  content: "Home";
  font-family: inherit;
  font-size: 14px;
}
#DeltaTopNavigation ul#zz10_RootAspMenu > li.static > a > span > span {
  font-size: 0;
}

enter image description here

In the above image, you can see the highlighted text is "Lorem Ipsum Dolar" which we make it font-size: 0 and add content property "Home" to it's parent span tag. You may have to adjust the CSS 'ul#zz10_RootAspMenu' to your id (use Firebug/IE tools to select elements and view hierarchy).

ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top