Archived topic
My custom CSS does not apply on this page
3 replies · Started by Asep on April 19, 2021
Hi,
Can you help me to find out why my custom CSS does not apply on this page?
Example of the Custom Css that I created on the archive page: https://www.suaraburuhnews.com/category/politik/ Here I created border under the image
The page where the custom css I created doesn't work: https://www.suaraburuhnews.com/?post_date Here the border that I created earlier doesn't exist
Hi there,
in your CSS you're targeting the .archive .post you need to include the blog body class as well eg.
.archive .post,
.blog .post {
/* Styles for archive and blog */
}
It works! Thank you so much for the help :)
You're welcome