Hello Kriesi,
My client would like a cart like button next to the menu linking to the contact page. If you view the site on mobile you see a hamburger menu on the right, next to it on the left a woocommerce cart button. One further to the left my client would like a phone contact button with a phone icon. Can this be done? Only on mobile by the way…
Thanks in advance!
Hi Luc,
You can add extra code inside a widget area in the header: http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/.
You can hide it from all other screens sizes than mobile using this CSS:
@media only screen and (min-width: 768px) {
#header .widget {
display:none;
}
}
Regards,
Rikard