How to add style in functions.php depending on conditions?
So on your category page check the body tag in your developer tools. There should be a category class. You can then target that page in your CSS with that classname. This is standard CSS stuff. .cat-name{ color: blue; } All other pages will not have that classname and the color: rule be your default. … Read more