Ethos look in category pages

HI,
I would like to know if it is possible to get the ethos look in the category pages of renew.
I already used the following code to change the look in the blog page.
@media (min-width: 980px) {

.blog .entry-featured {
width: 30%;
float: left;
margin-right: 3%;
}

.blog .entry-content {
width: 67%;
float: left;
}

}

Nevertheless, I want to get the same look in a category page, let’s say Category Culture. How do I do that? I tried with .culture . entry-content and .culture .entry featured, but with no success.

Thanks,
JL

HI There,

Thanks for writing in!

Making the blog layout like Ethos need lots of custom css.
The CSS selector should be like this.

    body.category-culture .entry-content {
  /* css here.*/
}
    body.category-culture .entry-featured {
 /* css here.*/
}

Hope this helps!
Thanks

Thank you very much. It’s just what I needed. With your selector I could use this code I found in a previous post:
@media (min-width:979px){
.blog .entry-featured {
float: left;
width: 34%;
margin: 0;
}

.blog .entry-content.excerpt {
float: right;
width: 66%;
padding-left: 35px;
}
.blog header.entry-header {
float: right;
width: 66%;
padding-left: 35px;
}
}

Thanks a lot.

Glad it worked and thank you for sharing the solution with us.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.