• Resolved kotr

    (@kotr)


    Is it possible to remove sidebar from all other pages except the home page? I noticed someone had already asked this the other way around and that was possible with a custom css:

    .home #primary { width: 100%; }
    .home #secondary ( display: none; }

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author ThemeGrill

    (@themegrill)

    In the dashboard, go to Appearance->Customize->Custom CSS section. Paste the following css.

    #primary { width: 100%; }
    #seconday { display: none; }
    .home #primary { width: 68%; }
    .home #secondary { display: block; }

    Hope this helps. ??

    Thread Starter kotr

    (@kotr)

    Thanks for a quick response, your support really rocks ??

    This code seems to move the sidebar below the 100% width content. Is there any possibility to remove it entirely?

    Theme Author ThemeGrill

    (@themegrill)

    Oh typo. ?? Missed a ‘r’ there in the middle.

    #primary { width: 100%; }
    #secondary { display: none; }
    .home #primary { width: 68%; }
    .home #secondary { display: block; }

    Hi there. I was able to remove the sidebar from all the pages on my site. But is there a way to have it on the blog page only? Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Removing sidebar from other pages’ is closed to new replies.