[Support request] How do I activate multiple columns

Home Forums Support [Support request] How do I activate multiple columns

Home Forums Support How do I activate multiple columns

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2326397
    David

    I have a home page using the Classic Editor. I have two sidebar columns and the main center column as the body of my page. Can I add two (2) columns in the body of the primary column while using the Classic Editor and if I can, what is the process?

    Thanks
    DB

    #2326534
    Ying
    Staff
    Customer Support

    Hi David,

    Just to be clear, you are trying to add 2 columns to the content area using Classic editor?

    Well, that will require custom HTML and CSS I believe.

    As it’s not theme related, we can’t really offer a full solution for this, unfortunately.

    The structure can be something like this:

    <div class="custom-columns">
    <div class="custom-column-1">column 1</div>
    <div class="custom-column-2">column 2</div>
    </div>
     

    Then you can use CSS like this to set the column widths:

    .custom-columns {
        display: flex;
    }
    .custom-column-1 {
        width: 40%;
    }
    .custom-column-2 {
        width: 60%;
    }
    #2330672
    David

    I think that might work. I’ll test it and let you know.

    Thanks

    #2330830
    Ying
    Staff
    Customer Support

    You are welcome 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.