Can you help me to find the CSS Class of Blog Page!

Url: https://youressay.club/writings/

.archive .entry-wrap {
    border-bottom: 1px solid #dfdfdf;
    padding: 0 0 35px;
    margin-top: -9.5%;
}

I want to use this CSS rule on blog page, I tired using (.blog) class but seems like not working.

Thanks.

Hi Saswata,

The class you are using .archive is not present in the specified page. The class archive is present in all Archive Pages,
Blog is also an acrhive, but once it set as static blog page it contains the blog class instead of archive.

So you can use .blog .entry-wrap or .blog article .entry-wrap instead of .archive .entry-wrap.

Remember that the above solution(s) will work if used as it is and dont conflict with any existing style.

Hope this helps.

Thanks

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