I am using the Sense theme. In the mobile view the menu Bar is showing as transparent. I would appreciate some help in having a solid colour behind it, without affecting the desktop view.
There is a screenshot of how it currently looks below;
identify the class or ID of the mobile menu bar and add custom CSS
Example of CSS code
/* Replace '.your-mobile-menu-class' with the actual class or ID of your mobile menu bar */
@media screen and (max-width: 767px) {
.your-mobile-menu-class {
background-color: #your-color-code; /* Change 'your-color-code' to the desired background color */
}
}
Thank you for the suggestion. I am not sure how you identify the class or ID of the mobile menu bar. Would you be able to guide me on how to do this please ?