#MSOZoneCe" /> #MSOZoneCe" /> #MSOZoneCe"/>

In SharePoint 2007, how can I change the background color of the Web Part Zone?

2.1k Views Asked by At

I know I can change the background color of a Web Part by including CSS in the source of a Content Editor Web Part:

<style type="text/css">
#MSOZoneCell_WebPartWPQ3{
background-color:"#ddecff";
}
</style>

But I would like to change the background color for the entire Web Part Zone. White is very boring... Does anyone know how to do this?

1

There are 1 best solutions below

0
Amay Kulkarni On
<style type="text/css">
.ms-webpart-chrome-title
{
background-color: Gray;
}

.ms-webpart-titleText.ms-webpart-titleText, .ms-webpart-titleText > a 
{
color: White!important;
}
</style>​​​​​