0

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?

rphello101
  • 1,671
  • 5
  • 31
  • 59

1 Answers1

0
<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>​​​​​
Amay Kulkarni
  • 828
  • 13
  • 16