Tagged: mobile menu
Hello. The mobile menu is not displaying on http://test.dangelointernational.com/
Can this be fixed? Thank you.
Hey k593,
Please send us a temporary admin login and login URL so that we can have a closer look. You can post the details in the Private Content section of your reply.
Best regards,
Rikard
Thank you Rikard. The information is in the private content section.
Hi,
I noticed that you are using a caching plugin. Would you mind opening your plugin’s settings page and temporarily deactivate the caching of your site? Then please try to clear your browser cache and hard refresh the site (Hold CTRL + SHIFT + RELOAD) to see if that solves the issue.
If that does not help then deactivate all other plugins as well, after you’ve clear cache.
Best regards,
Andy
Hi Andy,
Deactivating the caching of the site and clearing the browsers cache did not work. Deactivating plugins also did not work. Is there something else I can try?
Thank you for your help!
Hi!
It shows up fine on my end, attached a screenshot in private content field.
Please flush browser cache and refresh your page a few times – http://wiki.scratch.mit.edu/wiki/Hard_Refresh
Best regards,
Yigit
I found the issue. There was this custom CSS preventing the mobile menu:
#header_main > .container {
display: none;
}
To have that top header show only on mobile I changed it to this:
@media screen and (min-width: 750px)
{
#header_main > .container {
display: none;
}}