Site logo

[Resolved] Off canvas pannel – Flex Direction Column

Home Forums Support [Resolved] Off canvas pannel – Flex Direction Column

Home Forums Support Off canvas pannel – Flex Direction Column

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #2413507
    fabiosilva

    Hi 🙂

    On Off Canva Panel. any way some way to align elements in column (flex-direction: column;) without using custom CSS?,

    Thank you

    #2413532
    David
    Staff
    Customer Support

    Hi there,

    it would require Custom CSS. Is there anything specific i can help with ?

    #2414562
    fabiosilva

    Hi, David

    If I change:

    .main-navigation .inside-navigation {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    To it:

    .main-navigation .inside-navigation {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: column;
        align-content: flex-start;
    }

    Works… That’s correct? Is the recommended way?

    Thank you 🙂

    #2414580
    David
    Staff
    Customer Support

    Do you want to show the widgets stacked ?

    #2414684
    fabiosilva

    Basically something like this:
    Example 1

    And not this:
    Example 2 (not)

    I just want to use canva panel on mobile as menu mobile.

    Thank you.
    Thank you

    #2414700
    David
    Staff
    Customer Support

    Try this CSS:

    
    .main-navigation .inside-navigation aside {
        flex: 1 0 100%;   
    }
    #2414847
    fabiosilva

    Perfect! 🙂

    Thank you, David!

    #2414876
    David
    Staff
    Customer Support

    You’re welcome

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