SharePoint 2010-Putting a background image on 1 content page

user2354339 picture user2354339 · Aug 1, 2013 · Viewed 12.6k times · Source

I am new to SharePoint branding. I want to put a background-image that covers the entire content part of one page. When I put it in the Master page (e.g.,Additional Page Header), it bleeds onto all pages,lists, etc. in the site. How do I do this?

Answer

Louis Ricci picture Louis Ricci · Aug 1, 2013

Open the page in sharepoint designer

<asp:Content ContentPlaceholderID="PlaceHolderAdditionalPageHead" runat="server">
<style type="text/css">
body {
    background-image: url('...');
}
</style>
</asp:Content>