Hi @MarkJagdev,
That’s probably due to incorrect or typo error within CSS. Any CSS added after that faulty CSS code will not work. Are you adding it after this CSS?
@media only screen and (max-width:979px){
a.x-btn-navbar.collapsed:hover,a.x-btn-navbar.collapsed,a.x-btn-navbar{
background-color:#541cb5;
box-shadow:none;
}
It should be like this with proper closing bracket
@media only screen and (max-width:979px){
a.x-btn-navbar.collapsed:hover,a.x-btn-navbar.collapsed,a.x-btn-navbar{
background-color:#541cb5;
box-shadow:none;
}
}
Hope this helps.