Remove extra padding from pages

Hi guys!

This was question two on this thread, that I’m creating a new topic for.

On categories/archives/search/tag pages, there is additional 10px padding on the right of the primary content (apart from sidebar padding) and I’d like it to be the same size as on on home page, i.e. 0px.
I’m looking for something similar to this to remove it: .blog.home #page article{padding:0!important}

Attaching screenshot for better understanding.
My site: LipstickAlchemist.com

Here’s the screenshot.

Hi @lipstickalchemist,

I hope you are well today and thank you for your question.

You can remove that padding by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

#page article.post {
    padding-right: 0;
}

Best Regards,
Movin

Thank you, Movin!

You are most welcome here :slight_smile: