Hello,
On mobile, I don’t see the menu set up in the socket, why?
Tx,
Marine
Hey Jean-Francois!
You have this in your layout.css:
@media only screen and (max-width: 767px) and (min-width: 480px) {
.responsive #socket .sub_menu_socket {
display: none;
}
}
Add this to Quick CSS to override it:
@media only screen and (max-width: 767px) and (min-width: 480px) {
.responsive #socket .sub_menu_socket {
display: block !important;
}
}
Regards,
Rikard
Tx Rikard, done
Now I can see the socket area and my menu links with chrome inspector but I don’t see the links on the screen, I’ve checked if the links were not in color black on a black background but no, can u help?
Txxxxxxxxxx
Nice day
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#socket .sub_menu_socket {
margin-left: 0px!important;
}
Best regards,
Vinay
Great thanks Vinay!