After receiving a shortcode from a WordPress theme, the output is:
<div class="heading clearfix"><i class="icon icon-list-ol h2"></i> <h2> Hello World! </h2></div>
I am looking to style both the icon and h2 elements together. How can I target them simultaneously?
I attempted the following code:
i.icon.icon-list-ol.h2 h2 {color:red;}
Unfortunately, it did not work.
PS: This shortcode was generated by a WordPress theme.