Nothing makes it disappeared. I tried everything in here but nothing happened. What else should I do to hide or remove that statusbar messages.
Asked
Active
Viewed 1.8k times
3 Answers
6
Add following script to your Page
<style type="text/css">
#pageStatusBar
{
display:none!important;
}
</style>
Nirikshita
- 71
- 1
- 3
5
In master page , I make displa property none for status bar
<div class="ms-tableRow" style="display:none">
<div class="ms-tableCell ms-verticalAlignTop">
<div id="notificationArea" class="ms-notif-box"></div>
<SharePoint:AjaxDelta id="DeltaPageStatusBar" BlockElement="true" runat="server">
<div id="pageStatusBar"></div>
</SharePoint:AjaxDelta>
</div>
</div>
e.ozmen
- 1,492
- 11
- 33
- 52
1
<div style="display:none">
<div id="notificationArea" class="ms-notif-box" ></div>
<SharePoint:AjaxDelta id="DeltaPageStatusBar" BlockElement="true" runat="server">
<div id="pageStatusBar" style="display:none"></div>
</SharePoint:AjaxDelta>
</div>
Similar to e.ozmen's answer. Yet, the 'ms-tablerow' div did not exist for me in the seattle.master master page. So, I created the first div and added the style=display:none.
The style I added to div with id pageStatusBar appears to not have an effect.
1c1cle
- 618
- 4
- 12