Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #874604

    Trankuility
    Participant

    Hello,

    Most of my pages/posts use the content left, sidebar right layout. But on a few pages/posts I use the full-width layout. The problem with the full-width is that it’s too wide when viewed on desktop.

    How do I make ONLY the full-width pages/posts display at a width of 700px?

    Also, how do I prevent the Facebook comments plugin from showing on ONLY the full-width pages/posts?

    #874605

    Trankuility
    Participant
    This reply has been marked as private.
    #875039

    Christopher
    Moderator

    Hi there,

    Please add the following code in Customize -> Custom -> CSS :

    .x-full-width-active .x-container {
        max-width: 700px;
    }
    .x-full-width-active .x-comments-area {
        display: none;
    }

    Hope it helps.