且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在SP Online团队网站上的“搜索"中隐藏华夫饼图标,Office 365,SharePoint链接?

更新时间:2023-02-07 16:59:11

嗨anzy_1991,

Hi anzy_1991, 

您可以使用CSS隐藏它.

You can use css to hide it.

在页面上添加内容编辑Web部件,然后添加以下CSS代码以隐藏整个顶部套件栏.

Add content edit web part to the page, then add the following css code to hide the entire top suite bar.

<style type="text/css">
#suiteBarTop
{ display: none }
</style> 

注意:您可以使用F12获取要隐藏的ID/类.

Note: you can use F12 to get the id/class you want to hide.

***的问候,

Lisa Chen

Lisa Chen