How can I move the add to wishlist button next to the amount button?

Hi :slightly_smiling_face:
Current situation like here: https://linis-candy.myshopify.com/products/gemischte-tute-suss-500g
and i would like to bring the add to wishlist button, next to the amount button like the pictures here. Can somebody help me maybe? many thanks!

@LinisCandy

Hi,

Please add the code below to Assets > base.css file.

#shopify-block-3177f57a-96c1-4b40-bb2d-a8204aa7159b .wishlist-btn.style_4:not([data-gridhulklist]) {
    float: right;
    margin-top: -60px;
    margin-right: 12px;
}

Hope it helps.

Thanks.

1 Like

@LinisCandy
Put below css into base.css file(Online store->Themes->Edit code->assets->base.css)

#shopify-block-3177f57a-96c1-4b40-bb2d-a8204aa7159b .wishlist-btn.style_2:not([data-gridhulklist]), #shopify-block-3177f57a-96c1-4b40-bb2d-a8204aa7159b .wishlist-btn.style_4:not([data-gridhulklist]) {
    background-color: #ff6799;
    color: #ffffff;
    margin-top: -200px;
}

many many thanks!!