How to reduce the width of the content area but NOT the navigation?

I had the sidebar of my posts disabled. Now, my problem is the width of my contents is too wide. I don’t want this.

I want the content area of my blog to be:

  1. centered (meaning not in the left or right)
  2. I want to reduce the width of the content area BUT NOT the navigation menu width.

How do I do this? Thanks!

Hi @Sheina,

Please try adding this custom CSS on Theme Options > Global CSS:


.single-post .x-container.main.width {
    max-width: 1000px; /*Adjust this value accordingly*/
    width: 100%;
}
.single-post .x-main.left {
    width: 100%;
}

On you other post, if you will remove the background image from Theme Options, you wont see the gray part on the right side of the page.

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