CSS issue wpgmza_style.css (version 5.23)
-
On line 31 of wpgmza_style.css you’ll find:
.wpgmza_markerbox h1,h2,h3,h4,h5,h6,h7,h8,strong,p,br {
padding-left:0 !important;
padding-right:0 !important;
margin-left:0 !important;
margin-right:0 !important;
color:#000 !important;
}You’ll notice that “h2,h3,h4,h5,h6,h7,h8,strong,p,br” is global and not just within the “wpgmza_markerbox”
It’s turning my content rather black-ish ??
I think this should be:
.wpgmza_markerbox h1,
.wpgmza_markerbox h2,
.wpgmza_markerbox h3,
.wpgmza_markerbox h4,
.wpgmza_markerbox h5,
.wpgmza_markerbox h6,
.wpgmza_markerbox h7,
.wpgmza_markerbox h8,
.wpgmza_markerbox strong,
.wpgmza_markerbox p,
.wpgmza_markerbox br
{
padding-left: 0 !important;
padding-right: 0 !important;
margin-left: 0 !important;
margin-right: 0 !important;
color: #000000 !important;
}
- The topic ‘CSS issue wpgmza_style.css (version 5.23)’ is closed to new replies.