In SharePoint the most common design issue is to add a banner. Actually it’s not such an easy task to do and it always forces me to edit the Master Page of the site. I can’t do this via the Theme manager.
We have a couple of options to do this according to the banner type we want to add.
- If I have big banner with a lot of content I have only one way to insert it – add code to my Master Page. I can add additional div to the code with “img” tag inside or with “background –image” option of the div.
-
If I have a small banner and I don’t need to use all my site’s width for it I can add the banner as a “Browse Tab” background image. To do this I need to replace the “background-image” option in the CSS class named “s4-title”. The code of my CSS will be like this :
.s4-title
{
background-image: url(“http://servername/ImgLib/back.png”) #FCDF9C no-repeat;
}
The result:





