In this post we will discuss about how we can hide the search box in SharePoint 2013 in the home page. Also you can check out my previous posts on:
- Advantages of Apps in SharePoint 2013
- Disable mobile page redirection for SharePoint 2013
- Different authentication types supported in SharePoint 2013
We can simply hide the search box from the home page by using css.
For this edit the page and put a content editor web part. And can write the below css code in the content editor web part html source code.
<style type="text/css">
#titleAreaBox #SearchBox {display: none !important;}
</style>
After this save and publish the page, the search box will become hide.
- Advantages of Apps in SharePoint 2013
- Disable mobile page redirection for SharePoint 2013
- Different authentication types supported in SharePoint 2013
We can simply hide the search box from the home page by using css.
For this edit the page and put a content editor web part. And can write the below css code in the content editor web part html source code.
<style type="text/css">
#titleAreaBox #SearchBox {display: none !important;}
</style>
After this save and publish the page, the search box will become hide.