Hi,
We have customized the mobile menu and it works great, however the logo above is not linking on mobile. Any suggestions?
Hey GWS,
What type of customisations did you do and why is the logo linking to a placeholder page?
Best regards,
Rikard
Hi,
Sorry for the late reply.
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
#header .widget {
padding: 0;
height: 85px;
top: 75px;
}
and delete following custom CSS code
@media screen and (max-width: 768px) {
#custom_html-3 > div {
margin-top: 45px;
}}
Best regards,
Yigit
Thank you for your response. What you suggested didn’t work, but I figured it out. I added z-index in two places as shown below and now the logo link is working. Thanks!
.responsive #top #wrap_all .main_menu {
z-index: 1
}
.logo {
width: 100%!important;
z-index: 99;
}