Hi,
how can I reflect the phone icon (footer) at its longitudinal axis?
Hey vnfan!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#footer #text-6 p:nth-child(4) .av_font_icon {
position: relative;
top: -2px;
}
Regards,
Yigit
Hi Yigit,
I have meant a 90 degree rotation.
Hey!
Please use following code instead
#footer #text-6 p:nth-child(4) .av_font_icon {
-ms-transform: rotate(90deg)!important;
-webkit-transform: rotate(90deg)!important;
-moz-transform: rotate(90deg)!important;
transform: rotate(90deg)!important;
}
Regards,
Yigit
Hi Yigit, thanks too much.