Move Button in Header to the left

LukaL
Explorer
110 0 6

Hello guys someone know how to move this button to the left only on my mobile version https://prnt.sc/vs97hq its from an app the button..

anchorn.eu

Theme: Broadcast

Thanks a lot & best regards,

Luka 🙂 

Replies 3 (3)

Rajameltine
Explorer
59 4 3

Hello, you need to put CSS code in the theme.liquid file (see the documentation). Here is a sample code.

@media screen and (max-width: 767px){
#mycssselectore{
position:absolute:
left:0;
}
}

We need the url of your website to better see where to put the code.

Need fastly help, contact me : https://freelancerajameltine.000webhostapp.com/
Besoin d'aide rapidement, faites appel à moi : https://freelancerajameltine.000webhostapp.com/
Email: rajameltine@gmail.com
LukaL
Explorer
110 0 6

I fixed this already.

Thanks a lot do you know maybe how to move this button from the footer in to the header https://prnt.sc/vsabf6 

 

www.anchorn.eu

 

Best regards,

Luka

Rajameltine
Explorer
59 4 3

If your theme doesn't allow the element to be moved, I don't see any other solution apart from javascript. Here is an example code. After that it's a bit complicated because the design of the theme may change.

$(".header__content .wrap").append($("#localization_form").css("justify-content","center"));
Need fastly help, contact me : https://freelancerajameltine.000webhostapp.com/
Besoin d'aide rapidement, faites appel à moi : https://freelancerajameltine.000webhostapp.com/
Email: rajameltine@gmail.com