Comments on: MOSS 2007, CSS, and you, the Non-Developer – Part 3: the GlobalTitleArea http://www.endusersharepoint.com/2010/03/15/moss2007-css-and-you-the-non-developer-%e2%80%93-part-3-the-globaltitlearea/ No GeekSpeak on SharePoint 2007 WSS and MOSS Tue, 05 Oct 2010 21:00:31 -0400 http://wordpress.org/?v=2.8.6 hourly 1 By: Jay http://www.endusersharepoint.com/2010/03/15/moss2007-css-and-you-the-non-developer-%e2%80%93-part-3-the-globaltitlearea/comment-page-1/#comment-65593 Jay Mon, 10 May 2010 13:09:29 +0000 http://www.endusersharepoint.com/?p=6566#comment-65593 Santosh, I think the class you're looking for is .ms-globaltitlearea. make sure that you have set the url of the background-image attribute to "none". Once you do that you should be able to add a background-color attribute to set your backgorund color. It should look something like the following .ms-globaltitlearea { background-image:url("none"); background-color: #022800; Make sure you close the class with the trailing { See if that helps. -Jay Santosh,

I think the class you’re looking for is .ms-globaltitlearea. make sure that you have set the url of the background-image attribute to “none”. Once you do that you should be able to add a background-color attribute to set your backgorund color. It should look something like the following

.ms-globaltitlearea {
background-image:url(”none”);
background-color: #022800;

Make sure you close the class with the trailing {

See if that helps.

-Jay

]]>
By: santhosh http://www.endusersharepoint.com/2010/03/15/moss2007-css-and-you-the-non-developer-%e2%80%93-part-3-the-globaltitlearea/comment-page-1/#comment-65516 santhosh Mon, 10 May 2010 06:46:13 +0000 http://www.endusersharepoint.com/?p=6566#comment-65516 i have the same requirement but little change...i need to custom theme for the above requirement.....http://vspug.com/tigirry/2007/07/03/custom-site-theme-for-sharepoint-2007-moss-2007-and-wss-3-0/ i have followed the steps and created the custom themes ...i want to chnage the color of ms-titleglobalarea i have modified the color in the theme.css but the changes are not refelecting .....can u please help me in this........ i have the same requirement but little change…i need to custom theme for the above requirement…..http://vspug.com/tigirry/2007/07/03/custom-site-theme-for-sharepoint-2007-moss-2007-and-wss-3-0/ i have followed the steps and created the custom themes …i want to chnage the color of ms-titleglobalarea i have modified the color in the theme.css but the changes are not refelecting …..can u please help me in this……..

]]>
By: Links (3/21/2010) « Steve Pietrek-Everything SharePoint/Silverlight http://www.endusersharepoint.com/2010/03/15/moss2007-css-and-you-the-non-developer-%e2%80%93-part-3-the-globaltitlearea/comment-page-1/#comment-48179 Links (3/21/2010) « Steve Pietrek-Everything SharePoint/Silverlight Sun, 21 Mar 2010 23:16:55 +0000 http://www.endusersharepoint.com/?p=6566#comment-48179 [...] MOSS2007, CSS and you, the Non-Developer – Part 3: the GlobalTitleArea [...] [...] MOSS2007, CSS and you, the Non-Developer – Part 3: the GlobalTitleArea [...]

]]>
By: Eric Schrader http://www.endusersharepoint.com/2010/03/15/moss2007-css-and-you-the-non-developer-%e2%80%93-part-3-the-globaltitlearea/comment-page-1/#comment-45892 Eric Schrader Mon, 15 Mar 2010 20:53:01 +0000 http://www.endusersharepoint.com/?p=6566#comment-45892 What I like to do is use IE Developer Toolbar to get the specific selectors used to make the style I am trying to overwrite. From there, I will add all my selectors as overwritters to my new CSS file. I will then export this CSS to a theme and apply it to each seperate site. Themes can reach pretty far into your site, branding the 12 hive application pages (anything with /_layouts/ in the url) When you apply a theme, the CSS reference is added to the masterpage above any custom CSS, so you can move the theme css tag to just before the ending tag. This will insure your CSS theme will overwrite the Core.css and any other styling. If you are still having problems, you can use specific selectors by tag name, eg. TD.ms-wp_header, etc will overwrite any inline ms-wp_header css. You can learn a lot about this on w3 schools, http://www.w3.org/TR/CSS2/selector.html#pattern-matching Themes take some time to put together, but will drastically brand your site. What I like to do is use IE Developer Toolbar to get the specific selectors used to make the style I am trying to overwrite.

From there, I will add all my selectors as overwritters to my new CSS file.

I will then export this CSS to a theme and apply it to each seperate site.

Themes can reach pretty far into your site, branding the 12 hive application pages (anything with /_layouts/ in the url)

When you apply a theme, the CSS reference is added to the masterpage above any custom CSS, so you can move the theme css tag to just before the ending tag. This will insure your CSS theme will overwrite the Core.css and any other styling.

If you are still having problems, you can use specific selectors by tag name, eg. TD.ms-wp_header, etc will overwrite any inline ms-wp_header css. You can learn a lot about this on w3 schools, http://www.w3.org/TR/CSS2/selector.html#pattern-matching

Themes take some time to put together, but will drastically brand your site.

]]>
By: Jay http://www.endusersharepoint.com/2010/03/15/moss2007-css-and-you-the-non-developer-%e2%80%93-part-3-the-globaltitlearea/comment-page-1/#comment-45886 Jay Mon, 15 Mar 2010 19:56:13 +0000 http://www.endusersharepoint.com/?p=6566#comment-45886 That's a good point Eric. The plan is to point out options for deploying the customized .css file and some best practices in the closing article of the series. At this point we are still working in a virtual or test environment. Thanks! That’s a good point Eric. The plan is to point out options for deploying the customized .css file and some best practices in the closing article of the series. At this point we are still working in a virtual or test environment.

Thanks!

]]>
By: Eric Schrader http://www.endusersharepoint.com/2010/03/15/moss2007-css-and-you-the-non-developer-%e2%80%93-part-3-the-globaltitlearea/comment-page-1/#comment-45876 Eric Schrader Mon, 15 Mar 2010 19:15:59 +0000 http://www.endusersharepoint.com/?p=6566#comment-45876 Hmm, seems to me, if you load the mega core.css file by default, and load your custom one on top, thats double the CSS right off the bat, making it now 10,000 lines of CSS for the client to load. (on top of other CSS includes as well) Maybe I missed something though, just skimmed the article. Hmm, seems to me, if you load the mega core.css file by default, and load your custom one on top, thats double the CSS right off the bat, making it now 10,000 lines of CSS for the client to load. (on top of other CSS includes as well)

Maybe I missed something though, just skimmed the article.

]]>