Hi,
i insert the following code to show the footer menu on mobile device:
@media only screen and (max-width: 479px) {
.responsive #socket .sub_menu_socket {
display: block !important;
}}
My menu has several items so that it breaks into another line. There is not enough margin between the items, how can i fix it?
Thanks,
Michael
Hey Husky1001,
Could you post a link to the site in question so that we can take a closer look please?
Best regards,
Rikard
Hi Rikard,
Here is the Link: http://www.xn--rechtsanwalt-brinkmeier-dsseldorf-gqd.de/neu
Thanks,
Michael
Hi Michael,
Thanks for the link. Please try the following CSS as well:
@media only screen and (max-width: 479px) {
#socket .sub_menu_socket li {
padding: 10px 10px !important;
}
}
Best regards,
Rikard
Thanks, Rikard! That works.