Adding a Footer to a v4 SharePoint 2010 Master Page
June 13, 2010 3 Comments
I wanted to add a footer to bottom of all pages on my sharepoint 2010 site. I wanted a standard copyright line as well as a link to the privacy policy page. After digging around, I came up with this solution. Add a <DIV> to the copy of the original master page (because we all know you should not modify the default page) right above the DIV for the developer dashboard and right below the comment that ends the nav/content area. I have an example below (in red). Hope this helps someone out.
E.
<!--End Nav|Content Area-->
<div style="clear: both; text-align: center; padding: 10px; background-color: #FCFCFC; border: 1px solid #DBDDDE;">
Copyright © 2010 EMS Solutions Group, LLC. All Rights Reserved.
<p><asp:HyperLink runat="server" NavigateURL="/Pages/Privacy-Statement.aspx" id="HyperLink1">Privacy Statement</asp:HyperLink></p>
</div>
<div id="DeveloperDashboard">
<SharePoint:DeveloperDashboard runat="server"/>
</div>
</div>
</div>
</div>
Eric,
Thank you, It helped me a lot. I was trying to put the comapny footer with various links
Any idea, How to put a image banner to the top of the page with the ribbon and without ribbon
Thank you
Neel
Neel, I’m sorry I don’t have an answer for your question, but will pass it along to some developer friends of mine to see if they can answer that for you.
E.
THanks a lot…