sand star
asked 9 years ago

Hi! I was wondering if there’s a way to show the blog fluid width blog without the left sidebar?

Thanks you!

1 Answers
DominicStaff
answered 9 years ago

Hi,
To resolve this issue, you can open the content-blog.php file, then find the line 39 & 43.

  • If you want to remove the right sidebar, you can remove line 39 then add the following code to the style.css file:
    .page-template-layout-blog-php #content { width: 100%; max-width: 1200px; }

  • If you want to remove the left sidebar, you can remove the line 43 then add the following code to the style.css file:
    .page-template-layout-blog-php #main {
    position: relative;
    padding: 50px 8px 10px 100px;
    }
    .page-template-layout-blog-php #content {
    width: 100%;
    max-width: 1200px;
    }

    Hope this helps !

Powered by DW Question & Answer Pro