I'm having a css problem with the socialize mega menu collapse display. The problem occurs between 991px where the full desktop menu disappears and 769px where the collapsed menu icon appears. For tablet displays in this range of screen sizes there is no main menu available. Is there a fix for this css?
Hi tskipton, You can add the following CSS code to your template:
@media (min-width: 768px) and (max-width: 991px) { .logo .toggle-button { display: block !important; } }
That appears to have fixed the problem. Thank you very much for your reply.