Okay
  Public Ticket #3338872
reverse flags and footer in mobile menu
Closed

Comments

  •  8
    Cesare started the conversation

    Hi there, i need to reverse flags and footer text in mobile menu, how can i do?
    see pictures 2 to understand
    Thank you

    Attached files:  1.jpg
      2.jpg

  •  8,839
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    #slide-out-widget-area .menuwrapper:last-child {
        order: -1;
    }
    #slide-out-widget-area.fullscreen-alt .inner .off-canvas-menu-container {
        display: flex;
        flex-direction: column;
    }
    body #slide-out-widget-area .secondary-header-text {
        order: -1;
    }

    Thanks


    ThemeNectar Support Team 

  •  8
    Cesare replied

    I'm sorry tahir but it's not correct (see image1)

    correct (see image 2)


    thanks

    Attached files:  1.jpg
      2.jpg

  •  8,839
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .menu-wrap.menuwrapper {
        order: -2 !important;
    }
    #slide-out-widget-area .menuwrapper:last-child {
        order: -3 !important;
    }

    Thanks


    Thanks.



    ThemeNectar Support Team 

  •  8
    Cesare replied

    ok perfect, thanks again Tahir