Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #851593

    Peter C
    Participant

    Hi,

    How would I make it so that my site breaks down to a single column at 960px browser width?

    Thanks!

    #851726

    John Ezra
    Member

    Hi there,

    Thanks for writing in! To assist you with this issue, would you mind providing us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything. Thanks!

    #851730

    Peter C
    Participant
    #851907

    Rue Nel
    Moderator

    Hello There,

    Thanks for providing the url. To break down your site to a single column when at 960px browser width, please add the following css code in the customizer, Appearance > Customize > Custom > CSS or insert this code in your child theme’s style.css (if you are using a child theme)

    @media (max-width: 960px){
      .site .x-column {
        float: none;
        width: 100%;
        margin-right: 0;
      }
    }

    Hope this helps. Please let us know how it goes.