Hi support team,
I want to transform the phone icon in the top sidebar. Could you please help me with the code?
????????{
-ms-transform: rotate(90deg)!important;
-webkit-transform: rotate(90deg)!important;
-moz-transform: rotate(90deg)!important;
transform: rotate(90deg)!important;
}
Hey vnfan,
please add a custom css class name to the phone icon and use the below css
.phone-info .custom_class {
-ms-transform: rotate(90deg)!important;
-webkit-transform: rotate(90deg)!important;
-moz-transform: rotate(90deg)!important;
transform: rotate(90deg)!important;
}
Best regards,
Vinay
Hi Vinay,
I have added this code to my CSS. Now the email icon is also transition. How can I tell the browser that only the phone icon von entypo fontello (ue854)show do the transformation?
#top .phone-info .av_font_icon {
-ms-transform: rotate(90deg)!important;
-webkit-transform: rotate(90deg)!important;
-moz-transform: rotate(90deg)!important;
transform: rotate(90deg)!important;
}
Hey!
Please change the code to following one
#top .phone-info span:nth-child(2) .av_font_icon {
-ms-transform: rotate(90deg)!important;
-webkit-transform: rotate(90deg)!important;
-moz-transform: rotate(90deg)!important;
transform: rotate(90deg)!important;
}
Cheers!
Yigit
super. Thanks a lot. Yigit