I have some CSS code which works fine if I add it into the customizer – additional css within wordpress.
When i go to put it into my Themes style.css is has no effect.
Other codes work fine in both, what would be the cause for a certain code to work in one but not the other?
Regards,
Billy
If you are adding code to your theme there most likely is something loading after it that is overriding your change.
You can check your theme .css and make sure you remove the styles you don’t want or that your new .css comes after it in the document.
Sample:
H2{color:green;}
H2{color:blue;}
Blue will win because it’s loading last.
If you .css has to do with a plugin, sometimes they load after the style sheet too.
Does this help?
]]>