I’m working on a GeneratePress child theme and I need to add custom CSS to the media queries.
I added on my stylesheet for exemple a very basic instruction :
@media (max-width: 768px) {
.al2 {
color:red;
}
}
My CSS at the Media queries level is not taken into account, the text does not turn red.
The rest of my CSS (outside of the media queries) is taken into account.