Changing WordPress Blog and Content Area Width for Sparkling theme

Good evening,
I input some advice suggested on a previous thread to remove the sidebar from every post and it is working great. The code I used is here: https://colorlibsupport.com/t/removing-sidebar-making-posts-full-width/

However, now I would like to set a maximum width for the content area on all those pages as well, as it is a little bit too wide for my liking. I am comfortable editing the CSS, but nothing I have tried to this point has worked.

Any ideas?

Thanks in advance!

Hi @mbernstein,

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

To set a maximum width for the content area on all those pages try using the following CSS code along with the CSS code posted on your shared thread.

.main-content-inner.col-sm-12.col-md-8.pull-left {
  max-width: 1024px;
}

You can change the value of max-width property in the above code to whatever maximum width you want to set.

Best Regards,
Movin