Archived topic
Generatepress does not take into account my media queries.
3 replies · Started by Guillemette on June 4, 2020
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.
Why :)
Hi there,
you have some broken CSS:
/* Widget */
.footer-widget-3 {
text-align: center;
}
.footer-widgets-container.grid-container.grid-parent {
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
Remove those last 4 lines.
Oh sorry !
No problem :)