2
I have a Wordpress theme that, when running, generates the following code:
<div class="wpb_wrapper">
<article class="icon-box11">
<i class="fa-shield" style=" font-size:3em; color:#00ced1;"></i>
<h4>ANOS DE GARANTIA</h4>
<p>Todos os produtos instalados possuem 5 anos de garantia contra defeitos de fabricação.<br></p>
</article>
</div>
Based on the class icon-box11
, how to create a CSS code that changes the elements h4
and p
?
Hugs.
your answer is correct, but only to understand better, if I wanted to access these same tags, but coming from the wpb_wrapper class, as I would do?
– Italo Rodrigo
You change the selector to it and all the elements declared inside will receive the style.
– Leandro Angelo