how to insert phone icon (png) between logo and menu toggle in mobile view
here is my screen sample >
thanks
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
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
the logo and menu toggle blocked the phone icon on mobile view….
#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; }
}