Add a footer to the V4.master

I want to add a footer to the v4.master(which is the default master page in Sharepoint server 2010).

There are a few ways you could go when creating a footer that goes with v4.master. One simple method would be
to add a div right before the DeveloperDashboard line in
v4.master. Add the bolded line below:

<div class="s4-notdlg" style="clear: both; text-align: right; padding: 10px; background-color: #FCFCFC; border: 1px solid #DBDDDE;">
    &copy; Copyright 2010 AdventureWorks, Inc.
  </div>
<SharePoint:DeveloperDashboard runat="server"/>

This would add a footer below the left nav and body that matches the colors in the default left nav. You could of course expand on this by moving the stlye to an external style sheet or changing the look and feel.

原文地址:https://www.cnblogs.com/leolis/p/2101104.html