• Resolved barriec7

    (@barriec7)


    Tomas…can you make a few comments about how I might create a full page width, no side menu post template (similar to the one available with pages)?

    Thank you,

    Barrie

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Tomas Mackevicius

    (@tomasm)

    You can only use templates with pages, but let’s say you want to display single post view in full mode, you could edit single.php by removing this line:

    <?php get_sidebar(); ?>

    Or you could just use CSS rules to not display it, like:

    .singular #secondary {
    display: none;
    }

    With CSS rules you can target very individual cases, because you have additional body classes that helps to do this.

    Thread Starter barriec7

    (@barriec7)

    Tomas,

    As always, thank you so much. This will work just fine.

    Barrie

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘full page posts, no side menu’ is closed to new replies.