Site logo

Archived topic

Widget above secondary menu

3 replies · Started by Dave on February 12, 2018

Viewing posts 1–4 of 4

Is there a way like on the page linked below to have the widget on the left sidebar appear above the secondary menu that I have also positioned to the left sidebar? I want the translate widget first, then the secondary menu. Is that possible?

http://dev1.igniswebdesign.com/about/

Hey Dave,

Flexbox is probably the best method here:

.inside-left-sidebar {
    display: flex;
    flex-direction: column;
}

.inside-left-sidebar .widget_glt_widget {
    order: 1;
}

.inside-left-sidebar .gen-sidebar-secondary-nav {
    order: 2;
}

If you need it to work in older browsers, pop that code into this tool and it will prefix everything for you: https://autoprefixer.github.io/

Awesome! As always, you are super helpful. Thanks Tom!

You're welcome :)

This archived topic is closed to new replies.