Tagged: extra elements, header
Hello. Website is in local dev at the moment. I’m using the shortcode in the private area and it’s working great. I’m using the following CSS to Flip\Rotate the phone icon, which ends up also flipping all icons in Extra Elements. How can I just target the phone icon?
.phone-info .av-icon-char {
-ms-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
Thank you,
Ryan
Hey WP Turned,
You can target the first icon by using the nth-child rule
.phone-info .av_font_icon:nth-child(1) .av-icon-char {
background: red;
}
Best regards,
Vinay
Good to go! Thanks Vinay.
Hi,
I’m glad Vinay was able to help you. If you need further help, please let us know here in the forums.
Best regards,
Jordan Shannon