Summary : How to add footer Message in SharePoint 2013,add footer in SharePoint 2013 Master page
In this post, we will look at an example of how to add a footer message in SharePoint 2013 Master page using SharePoint Designer 2013. (I am adding the footer in "oslo.master" page in this example)
Lets look at the detailed steps below –
<SharePoint:DelegateControl runat="server" ControlId="PageFooter" AllowMultipleControls="false" />
</SharePoint:AjaxDelta>
with below
<SharePoint:AjaxDelta id="DeltaPlaceHolderFooter" BlockElement="true" runat="server">
<%--SharePoint:DelegateControl runat="server" ControlId="PageFooter" AllowMultipleControls="false" /--%>
<div id="footer" class="noindex">
<p style="text-align:center;">Some fancy footer is displayed here.</p>
</div>
</SharePoint:AjaxDelta>
In this post, we will look at an example of how to add a footer message in SharePoint 2013 Master page using SharePoint Designer 2013. (I am adding the footer in "oslo.master" page in this example)
Lets look at the detailed steps below –
- Open the site in SharePoint 2013 Designer and then select “Master Pages” in the left Navigation.
- Select the oslo.master (Please save copy of it before editing)
- Now open oslo.master for editing
- To specify custom footer, replace the block
<SharePoint:DelegateControl runat="server" ControlId="PageFooter" AllowMultipleControls="false" />
</SharePoint:AjaxDelta>
with below
<SharePoint:AjaxDelta id="DeltaPlaceHolderFooter" BlockElement="true" runat="server">
<%--SharePoint:DelegateControl runat="server" ControlId="PageFooter" AllowMultipleControls="false" /--%>
<div id="footer" class="noindex">
<p style="text-align:center;">Some fancy footer is displayed here.</p>
</div>
</SharePoint:AjaxDelta>
That's it!! :)
Cheers...
No comments:
Post a Comment