I am working on adding some CSS to a site I am making, and have identified what I need to modify:
#MSOZoneCell_WebPartWPQ1{
background-color: #FFF !important;
outline: 4px solid white;
}
#MSOZoneCell_WebPartWPQ2{
background-color: #FFF !important;
outline: 4px solid white;
}
#MSOZoneCell_WebPartWPQ3{
background-color: #FFF !important;
outline: 4px solid white;
}
.....
#MSOZoneCell_WebPartWPQ20{
background-color: #FFF !important;
outline: 4px solid white;
}
I can't override the upper level more generic containers so that it doesn't require the different numbers. Is there a JS or other solution to my problem? I don't have the ability to edit the HTML, only the CSS.
I didn't see a similar question but I may just be using the wrong terms.