Adding a Footer to a v4 SharePoint 2010 Master Page

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 &copy; 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>
Advertisement

3 Responses to Adding a Footer to a v4 SharePoint 2010 Master Page

  1. neel says:

    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

    • ericstepek says:

      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.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.