www.dianthavanmarion.nl

Branding SharePoint

By Diantha van Marion

February 2nd, 2010

Video’s of the SharePoint Connections 2010 available at http://channel9.msdn.com

Some examples of interesting video’s:



Or read more about:

January 30th, 2010

I just migrated my DasBlog to this Wordpress blog. So if you see any inconvenience, please let me know.

I’m very exited to use the features and widgets DasBlog couldn’t offer. For now I just used one of the default themes, but I wouldn’t be me if I would just leave it like this. So be prepared, in the near future, I will restyle this blog personally. First, I need to find some time to do it. :)

Thanks to have you back! Same blog, different place.

July 24th, 2009

Fourth and final article is now online.

Thx to all who were involved!

http://sharepointmagazine.net/technical/development/sharepoints-branding-limitations-part-4

July 23rd, 2009

Part 3 about SharePoint’s branding limitations is now online. http://sharepointmagazine.net/technical/development/sharepoints-branding-limitations-part-3

Part 4 will follow tomorrow.

July 22nd, 2009

And part 2 of SharePoint’s branding limitations is also online now!

http://sharepointmagazine.net/technical/development/sharepoints-branding-limitations-part-2

July 22nd, 2009

TamTam is in the partner spotlight of sharepointmagazine.net.

Part
1 of 4 of SharePoint’s branding limitations
is now also online on sharepointmagazine.net.
Stay tuned, because part 2 is coming on today!

July 20th, 2009

http://sharepointmagazine.net

Stay Tuned, cause some very interesting SharePoint Branding articles will follow this
week!

July 17th, 2009

Always wondered how you could put some branding on SharePoint? What is possible, what isn’t?

Then keep your eye on www.sharepointmagazine.net,
because my four articles about SharePoint’s Branding Limitations will be published
next week!

April 24th, 2009

Just wanted to share a wonderfull url with you!

http://getfirebug.com/lite.html

February 12th, 2009

Reset the styling of the rollover of the items:

.ms-topNavFlyOutsHover,
.ms-topNavFlyOutsHover a{
    background-color:red;
}

Reset the styling of background of the item arrow:

.ms-topNavFlyOuts td{   

    background-color:white;
}

Reset the styling of the background of the items:

.ms-topNavFlyOuts{
    background-color:white;
}
To reset the arrow of the menuitems with a second niveau of items, see heathers blog:
http://heathersolomon.com/blog/archive/2009/02/09/Modifying-the-second-level-navigation-arrow-image.aspx

So, all together:

.ms-topNavFlyOutsHover,
.ms-topNavFlyOutsHover a{
    background-color:red;
}

.ms-topNavFlyOutsHover a:link,
.ms-topNavFlyOutsHover a:visited,
.ms-topNavFlyOutsHover a:hover{
    color:white !important;
}

.ms-topNavFlyOuts a:link,
.ms-topNavFlyOuts a:visited{
    color:red;
}

.ms-topNavFlyOuts td,
.ms-topNavFlyOuts{
    background-color:white;
}

The border that comes around the whole flyout area still has a blue border. This is
set on the classname of the .zz1_TopNavigationMenu. Every flyout menu has it’s own
classname, but in that classname is a ID-number. You will never know which numbers
will be used, since you do not know how many menu items there are. For example:

.zz1_TopNavigationMenu_8 {Default.aspx (line 28)
    background-color:#F2F3F4;
    border:1px solid #A7B4CE;
}

But when you look closer, you see that beside this classname, every flyout area has
the same classname, that is zz1_TopNavigationMenu_0. So, styling the border of the
flyout menu, will be done by changing the border of this classname. Like this:

div.zz1_TopNavigationMenu_0{
    border:1px red solid;
}

Do check the flyout menu on a listpage, and double check if the list header is not
visible on top the the flyout menu. if so, check
this blog post
.

That’s all folks!