How can I move a header button to the left on mobile?

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 :slightly_smiling_face:

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.

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

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"));