The problem was that the h3 tag wasn’t inside .rpwe-block class but inside a div with my ID Class.
Was this:
#index-widget-opinion h3{
font-family:"Raleway", "open-sans", arial, helvetica;
font-size: 1.7rem;
font-weight: 700;
font-style: italic;
color: #333;
text-align: center;
}
Instead of this:
#index-widget-opinion .rpwe-block h3{
font-family:"Raleway", "open-sans", arial, helvetica;
font-size: 1.7rem;
font-weight: 700;
font-style: italic;
color: #333;
text-align: center;
}
Cheers, thxs anyway!