Looking for some assistance here. I'm having trouble with my media queries not working as expected. Specifically, I'm attempting to adjust the padding on the navigation menu of my website. Despite setting up a media query to change the padding for screens that are 768px wide, I'm not seeing any changes. I've included the necessary meta tag below:
<meta name="viewport" content="width=device-width; initial-scale=1.0">
However, even after adding the meta tag, the media query doesn't seem to be taking effect. Here's what my media query looks like:
@media screen and (max-width:768px) {
.menu-onesg-menu-container ul li a {
padding: 0px 15px 0px 0px;
}
}
Any ideas on why this might not be working as expected?