css - how to keep the footer always bottom of the page in sharepoint 2013 without using javascript? -
I'm branding SharePoint UI to your company's customers, most customers want to lay down forever page to footer (non sticky). When the material gets too high, it is automatically going down, but if the content is low, then I want to put footer at the bottom of the screen. In the normal HTML page, I can get it using CSS. But so far in SharePoint I am using Javascript to fix this problem.
Is there a way that I can solve this problem only by using CSS in SharePoint 2013?
A sticky footer solution for it is essentially an HTML page (as described) Adding is similar, except that div
in the seattle.master file in SharePoint 2013.
sticky footer To format the new Note that footer and push should be the same height, and footer spreads throughout the page Have a multi-column layout in In SharePoint 2013 there is a great writing specifically about adding a sticky footer. div (the main content area) push immediately goes, and cover both the main content area and push around . footer immediately Cover div closing tag follows
. Wrapper {min-height: 100%;
div
s, CSS is required below. Height: Auto! Important; Height: 100%; Margin: 0 auto-4em; } .footer, .push {height: 4 m; Clean both; }
Comments
Post a Comment