Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #655653

    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;
    }

    #655784

    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

    #655794

    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;
    }

    #655797

    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

    #655823

    super. Thanks a lot. Yigit

    #655825

    Hey!

    You are welcome, glad we could help! Let us know if you have any other questions or issues and enjoy your weekend!

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘transform (90deg) for phone icon’ is closed to new replies.