How can I move my currency selector to the top left corner?

Hello,

My currency selector is at the bottom left and I would like to move it to the top left corner. Can someone help me please?

Thanks a lot!

Zine

www.madeoftears.com

@Zine - please add this css to the very end of your theme.scss.css file and check, should look like screenshot

form#currency_form {
 bottom: 0%; top: 10%;
}

2 Likes

Hello,

Thank you so much it looks like the screenshot but there are black lines on the sides now… Could you please help me remove that?

@Zine - please add border:none; to the property so entire code becomes

form#currency_form {
    bottom: 0;
    top: 10%;
    border: none;
}
1 Like

Thank you so much!