SharePoint固定的Footer

原文地址:http://www.eliostruyf.com/sticky-footer-solution-for-sharepoint-2013/

照搬全文:

OFFICE 365 & SHAREPOINT SEARCH / DEVELOPMENT / BRANDING

Sticky Footer Solution for SharePoint 2013

ON  JAN 23, 2013 BY ELIO STRUYF WITH 52 COMMENTS
 

Footers and SharePoint that was the starting point of this blog. Back in August 2010, I blogged about how to create a sticky footer for your SharePoint 2010 sites (blog post can be found hereand here). Now it is time to upgrade this sticky footer solution to SharePoint 2013.

For this sticky footer solution you will only need to add some HTML and CSS markup to the master page html file.

If you used my solution from 2010, you will see that not much has changed.

Adding the HMTL Footer markup to the master page

  • Open the master page its HTML file in your favorite text editor (in this example I will use the seattle.html file);
  • Do a search for the s4-workspace DIV, and add a new wrapper DIV underneath it;

 

 

Wrapper DIV location

Wrapper DIV location

  • Go straight to the bottom of the HTML file and find the last DIV closing tag;
  • Replace the DIV's closing tag with the following code:

 

 

SharePoint固定的Footer_第1张图片

Footer HTML location

  • Save the file

Styling your footer

Now that you've added your HTML markup to the master page HTML file, we only need to style the footer.

The CSS markup looks like this:

I paced this CSS code for testing purposes in the following location: "/_layouts/15/images/tests/footer.css".

Sticky Footer Result

The result looks like this:

SharePoint固定的Footer_第2张图片

SharePoint 2013 Footer

SharePoint固定的Footer_第3张图片

SharePoint 2013 Footer Scrolling

JavaScript Solution

During the writing of this blog post Randy Drisgill posted his solution of adding a Sticky Footer via JavaScript. The blog post can be found here.

Download the files

Seattle With Sticky Footer

Footer CSS file

你可能感兴趣的:(SharePoint固定的Footer)