dynamic_avia styles are overriding enfold-child css styles I create. I’m using typekit fonts through typekit plugin. Is there a way to turn off dynamic_avia or font definitions found in General Styling > Fonts.
Hey Paul!
You’ll want to keep those in there and leave them alone. Instead for your child theme use the !important override for your CSS like so.
a { color: red !important; }
The child theme stylesheet gets loaded first so you have to use !important sometimes to make sure it does not get overridden.
Also you can add a #top to the front of your CSS and that will help it as well.
#top a { color: red; }
Cheers!
Elliott