Hello friends, I would like to know how to move the add to wishlist button to be aligned to the left like everything else on this page. See below.
URL: www.atmosphaera.co
Theme: Taste V2
Hello friends, I would like to know how to move the add to wishlist button to be aligned to the left like everything else on this page. See below.
URL: www.atmosphaera.co
Theme: Taste V2
Hi @atmosphaera , you can move the Add to Wishlist Button to the Left by following these steps:
.Vtl-WishlistButton__AddToWishlist {
justify-content: flex-start !important;
}
In case you only want button on the left in desktop mode, add this code snippet:
@media screen and (min-width: 750px) {
.Vtl-WishlistButton__AddToWishlist {
justify-content: flex-start !important;
}
}
And here is the result :
Hope this can help you.
.Vtl-WishlistButton__AddToWishlist {
float: left !important;
}
thank you so much for taking the time to help me!