SPointBlog SPointBlog
How to add a banner to our site.
5/29/2011 12:00:00 AM
SharePoint 2010;Design

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.
  1. 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.
  2. 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:
1.png

 

 

 Leave a comment

 
Name:
Comment:
RelatedPostID:

  
There are no items to show in this view of the "Comments" list. To add a new item, click "New".