This blog post is created by a request of a commenter named Gane. He asked me how to add a footer section to the “minimal.master” master page. This master page is used for the search centers in SharePoint 2010. My previous solution for adding a footer to a master page, were based on the “v4.master” master page (solution 1, solution 2). The HTML code of the minimal master page is totally different than the HTML code from the “v4.master” master page.
In the minimal master page there isn’t a “s4-workspace” section. I used this in the “v4.master” to add my custom wrapper to it and add my footer after this section. This means that another section needs to be used for the minimal master page. There are two possibilities:
- Create a custom wrapper section like in the “v4.master” solution that encapsulates the whole html from the page;
- Search for an existing section that could be used. I chose for the second possibility.
The section that encapsulates everything from the page is the body and form tags. The footer needs to be added after the chosen section, so the form section needs to be used.
Before the “form” closing tag, add the following HTML code block:
|
|
After the “form” closing tag, add the following HTML block:
|
|
The CSS isn’t that different, you will need to change the wrapper class to the “form” section.
|
|
The end result should be like this.
Here you can download my version of the “minimal.master” master page with a footer.