Okay
  Public Ticket #1746341
Room Page Full Width without sidebar
Closed

Comments

  • Christoph started the conversation

    Hi, I've hidden the sidebar on the room post page. How can I change the width with how the main content is shown? It seems like it keeps a narrow formatting, like the one when the sidebar is activated. So it looks a bit lost.
    Thanks in advance!

  •  234
    Elena replied

    Hi Christoph,

    Content area keeps the same with because a wider content area doesn't provide a good readability. Note that an ideal measure is between 45 and 75 characters in length. Ref: https://www.smashingmagazine.com/2014/09/balancing-line-length-font-size-responsive-web-design/

    Anyway, if you need a wider content area, you could add some Additional CSS (via the Customizer):

    @media screen and (min-width: 769px) {
      .single-room .site-content .column.is-8.is-offset-2 {
        width: 100%;
        margin-left: 0;
      }
    }

    That will apply on all room pages

  • Christoph replied

    Hi Pasquale,

    thanks a lot for your answer!

    All the best,

    Christoph

  •  234
    Elena replied

    No worries!