Hello, I recently installed WP Mega Menu and love it. However, there seems to be no option in the plugin to eliminate the images in the menu drop down in mobile devices. I have disabled the “mega menu in mobile devices” but the images are still there. I have placed the below code and it does the trick, however, it is disabling my Google maps and Wow Slider on mobile devices, all other images are unaffected.
@media (max-width: 600px) {
img {
display:none;
}
}
I have also tried these examples in the custom CSS and none of these worked:
@media (max-width: 600px) {
.Natural-Hair-Salon img {
display:none;
}
}
@media (max-width: 600px) {
.wp-image-9067 img {
display:none;
}
}
@media (max-width: 600px) {
.wp-image-9067 {
display:none;
}
}
If someone could please help me, I would appreciate it.