Hi, Is it possible to display the logo when responsive menu is open. I.E next to the toggle icon. Could not find this in the forum anywhere.
Thanks.
Hey!
Try adding this code to the Quick CSS:
#mobile-advanced {
background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 16%, rgba(255,255,255,1) 17%, rgba(255,255,255,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(16%,rgba(255,255,255,0)), color-stop(17%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,1)));
background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 16%,rgba(255,255,255,1) 17%,rgba(255,255,255,1) 100%);
background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 16%,rgba(255,255,255,1) 17%,rgba(255,255,255,1) 100%);
background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 16%,rgba(255,255,255,1) 17%,rgba(255,255,255,1) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 16%,rgba(255,255,255,1) 17%,rgba(255,255,255,1) 100%);
}
Cheers!
Josue
Hey!
Try moving the x button, modify the top/right values:
#advanced_menu_hide{
top: 20px;
right: 10px;
}
Regards,
Josue
Hey!
Please see – https://kriesi.at/support/topic/put-a-logo-to-the-off-canvas-navigation/#post-282941
Regards,
Yigit
Thanks Yigit.
Easy flexible solution. I tried lots of approaches. With your solution I could delete heaps of CSS.
Wow you and Endfold rock.