SallyMelek Hey, Need help with my CSS code, can't get it to work @media only screen and (min-width: 768px) and (max-width: 793px) { .LinkDropdown, .itemCount4 { display: none !important; } I want to hide the "About" section on the header hidden
Pollux SallyMelek Try .LinkDropdown.itemCount4 instead. With your current code you are hiding every element with a class of .LinkDropdown and/or .itemCount4.
Pollux SallyMelek I understand. The whole "About" menu is contained in the li element with the class item-link10. So this will do the trick: @media only screen and (min-width: 768px) and (max-width: 793px) { li.item-link10 { display: none; } }