# Tuesday, August 11, 2009

An article Andrew Connell worked on hasrecently been published to MSDN. The article, Real WorldBranding with SharePoint Server 2007 Publishing Sites, walks designersthrough the process of creating a custom brand in SharePoint Publishing sitesas well as helping developers take the design and implementing it as a custombrand using Features and Solutions.

Here's a summary on whatthe article is all about:

"Microsoft Office SharePointServer 2007 publishing sites make use of the Office SharePoint ServerPublishing Features to provide capabilities for creating engaging Web contentmanagement (WCM) sites. Frequently used as Internet-facing Web sites, thesesites require the use of custom-designed user interfaces to establish an onlinecorporate identity. This process, whether it is used on a traditional HTML pageor in Office SharePoint Server, is known as Web site branding. Publishing sitesmake use of master pages, page layouts, Web Parts, and CSS to enable designersand developers to create branded Web sites that can rival the designs of manypopular Web sites today. This article focuses on the mechanics of properlyplanning and creating a design for an external, Internet Web site by using apublishing site. The article uses as a specific example a fictitious travelcompany, Adventure Works Travel, which needs to create a heavily brandedSharePoint site. Figure 1 shows this publishing site."

posted on Tuesday, August 11, 2009 11:33:02 AM (GMT Daylight Time, UTC+01:00)  #    Comments [1] Trackback
# Monday, June 08, 2009

TABLE.ms-recyclebin TD {
     background: #000000 url('<image_path>') repeat-x;
     border: 1px solid #FFFFFF;


TABLE.ms-recyclebin TD A{
     color: #FFFFFF;
}

posted on Monday, June 08, 2009 11:29:09 AM (GMT Daylight Time, UTC+01:00)  #    Comments [2] Trackback
# Saturday, June 06, 2009

Sharepoint End User Content Team writes an article that describes "How to create custom Sharepoint site theme". Nice article!

http://sharepoint.microsoft.com/blogs/GetThePoint/Lists/Posts/Post.aspx?ID=122 

posted on Saturday, June 06, 2009 11:27:47 AM (GMT Daylight Time, UTC+01:00)  #    Comments [0] Trackback
# Friday, June 05, 2009

You can remove the home link from view with CSS.

The code for your alternate CSS file is:

td#zz1_TopNavigationMenun0 {
 display:none;

posted on Friday, June 05, 2009 11:27:23 AM (GMT Daylight Time, UTC+01:00)  #    Comments [1] Trackback
# Monday, March 30, 2009

Heather Solomoposts a new trick about altering Sharepoint menu's second level navigation arrow. Here are the steps :

    Open your master page. Switch to Code View. Search for "TopNavigationMenu".  Using Intellisense in the code view, or using the Properties pane, add the following property to the AspMenu tag:

    DynamicPopOutImageUrl="insert image URL/path here"

    So your code should look like:
    <SharePoint:AspMenu
          ID="TopNavigationMenu"
          Runat="server"
          DataSourceID="topSiteMap"
          blah blah.....
          DynamicPopOutImageUrl="/images/myimage.gif">
You can read full post by Heather here.
posted on Monday, March 30, 2009 9:58:07 AM (GMT Daylight Time, UTC+01:00)  #    Comments [0] Trackback
# Sunday, January 25, 2009

When you implement a Sharepoint Site project your page title includes "Home" string. But we can't find any way to remove "Home" string.
The first step to changing it is to understand where this string is stored. Easiest way to do that is to open the default.aspx page with Sharepoint Designer. We can see it contains a content block that replaces the master page's Title content placeholder.

Full article is here : http://weblogs.asp.net/avnerk/archive/2007/04/11/customizing-moss-page-title.aspx

posted on Sunday, January 25, 2009 8:50:09 AM (GMT Standard Time, UTC+00:00)  #    Comments [0] Trackback