Remove padding from blog pages

How can I remove the padding from the blog pages so they align the same way as the main pages of the website? See screenshot:

Hello @bebang,

Thanks for writing in!

We noticed that you added this custom CSS:

.entry-wrap {
    display: block;
    padding: 80px;
    background-color: transparent;
    box-shadow: none;
    border:none!important;
}

This code also affects the single blog post. You may need to adjust the left and right padding of your blog posts by setting the value to 0. Perhaps this thread can help you:

On that thread, you can have this sample code so that on the single blog post, there will be no left and right padding. Thus, making the width of the post the same as your navigation.

.single-post .entry-wrap {
    padding-left: 0px;
    padding-right: 0px;
}

Please note that the code provided above serves as a guide only and is to help you in getting started so implementing it and maintaining the code will be out of our support scope and for further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer.

Best Regards.

1 Like

Perfect. Thank you!

Hi @bebang,

Glad that we are able to help you.

Thanks

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