Skip to main content

Toolbar right left, show in sticky header and the mobile header

Navigate to YOOtheme > SETTINGS > Custom Code > CSS/LESS, and add the following to it:

 /*Force toolbar (Top area above header) to show on small screens*/
@media(max-width:  @breakpoint-medium) {
    .tm-toolbar.uk-visible\@m {
    display: block !important;
    }
    .tm-page {
    display: flex;
    flex-direction: column;
    }
    .tm-toolbar {
    order: -1;
    }
}
  • Hits: 7