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
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
@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%;
}
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;
}
Thank you so much!