Just happened all the sudden. Also, Quick CSS in dashboard/theme options are being ignored.
Any ideas what could’ve happened overnight?
Hey tlow87!
What css codes are you trying to apply? Did you add any plugins before this issue occur?
Regards,
Ismael
A custom class for a paragraph tag wasn’t working – then I noticed that the Google Web Fonts weren’t being displayed.
The CSS may not be getting imported properly?
Hi!
Can you please post the code for the custom class for the paragraph here? And the css code you’re trying to apply on it. The enfold.css is working properly. Please try to select a predefined color scheme, see if the page change.
Best regards,
Ismael
Figured out what it was.
I had this in my Quick CSS to remove the slider on a mobile device:
@media only screen and (max-width : 480px) {
.avia-layerslider { display: none; }
This disabled one of the stylesheets, resulting in Web Fonts not loading. Any idea why?
Where should I put the code to remove the slider on mobile devices?
Hi!
You can try adding the code to Custom.css file inside Enfold/Css folder to see if that works fine.
But please note that your code is missing one curly bracket at the end. It should be
@media only screen and (max-width : 480px) {
.avia-layerslider { display: none; } }
Best regards,
Yigit
That did the trick! A lot of problems have gone away lately by just trying to use custom.css instead of Quick CSS. Thanks!!