Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #626853

    how to insert phone icon (png) between logo and menu toggle in mobile view

    here is my screen sample > Insert icon between logo and menu toggle

    thanks

    • This topic was modified 8 years, 6 months ago by smapua.
    #627596

    Hey smapua,

    You could try adding a widget area to the header: http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/. We can help you out with styling and hiding it on larger screens once you’ve added it.

    Regards,
    Rikard

    #627600

    Please give some instructions on how to insert png phone icon between logo and mobile menu toggle… step by step, i dont know the css code… thanks

    #627664

    the logo and menu toggle blocked the phone icon on mobile view….

    logo and menu icon blocked the phone icon
    #header .widget {
    left: 84%;
    padding-top: 8px;
    position: absolute;
    top: 0;
    transform: translate(-50%);
    z-index: 999;
    }

    /***********/
    @media only screen
    and (min-device-width : 320px)
    and (max-device-width : 480px) {
    .phoneicon { display:block; }
    }

    @media only screen
    and (min-device-width : 768px)
    and (max-device-width : 1024px)
    and (orientation : portrait) {
    .phoneicon { display:none; }
    }

    @media only screen
    and (min-device-width : 768px)
    and (max-device-width : 1024px)
    and (orientation : landscape) {
    .phoneicon { display:none; }
    }

    @media only screen
    and (min-width : 768px) {
    .phoneicon { display:none; }
    }

    #628157

    Hi,

    At very small sizes it seems your image can’t fit so I think you have to look for some alternative solutions, maybe add another widget to the header with a link reading click here to call maybe?

    Thanks,
    Rikard

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.