• Resolved crael

    (@crael)


    Hello,

    Is it possible to reverse the content with the menu in the top bar please ? I need the content to be in the inner position and the menu te be in the outer position. I didn’t find anything for that in the customizer sorry.

    Crael.

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi Crael,

    Do you want to move the topbar content somehwere else?:

    https://i.prntscr.com/yrsSlm9HQOa9m_2ySH2FyA.png

    Thank you!

    Thread Starter crael

    (@crael)

    Hello emranemranx,

    Not I just want to reverse en “english”, which is include in a menu, and the “content outer position, which is a content added in the top bar. Everything should stay in the top bar.

    Thank you,

    Crael

    Hello,

    Please add the following code in the customize > custom CSS/JS. It will reverse the order of the content section.

    div#top-bar-content {
         display: -webkit-flex;
         display: flex;
    }
    div#top-bar-nav {
        order: 2;
        -webkit-order:2;
    }
    span.topbar-content {
        order: 1;
        -webkit-order:1;
        margin-right: 15px;
    }
    Thread Starter crael

    (@crael)

    Hello Amit,

    Thank you it work well ! But it’s not really responsive on mobile. Is it possible to add something to get the content to be centered (on mobile only) please ?

    Crael.

    Hi,

    Kindly update the above code with this one and let me know it works or not.

    div#top-bar-content {
         display: -webkit-flex;
         display: flex;
    }
    div#top-bar-nav {
        order: 2;
        -webkit-order:2;
        margin-left: 15px;
    }
    span.topbar-content {
        order: 1;
        -webkit-order:1;
        margin: 0 auto;
    }
    Thread Starter crael

    (@crael)

    Perfect! Thank you Amit !

    Also, I need help for some custom CSS also in this page.

    Thank you again.

    Crael

    You’re Welcome ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Top bar question’ is closed to new replies.