I’ve been using the following custom CSS to make my Blog look correct:
.blog .entry-featured {
width: 50%;
margin:25px auto;
}
.blog .entry-content {
padding-left: 5%;
padding-right: 5%;
}
.blog .entry-title {
padding-left: 5%;
padding-right: 5%;
}
However, now I need to split the Blog into 2 different Blogs, so I’m using category slugs to directly link to each different Blog (e.g. website.com/category/category-name/). Neither category is affected by the aforementioned CSS. How do I target the category’s “page” specifically?