How do I move my 'VIEW COLLECTIONS' button so it's centrally aligned with my text?

Hi,

Please can you help me move my button from where it is so that it’s centrally aligned with the text?

Store is mamagreen-au

Thanks

2 Likes

Hello, to the right where I have drawn the red box - so that it is in the centre of the text please

https://mamagreen.com.au/

Hi @nh-slh ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:


Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

Hi @nh-slh , I hope you are doing well.

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.css

Step 3: Paste the below code and save

@media only screen and (min-width: 750px) {
    .c-content-box.left-d {
        justify-content: flex-end !important;
        transform: translateY(33px);
        margin-right: 9%;
    }
}

If my code is useful, please give me a like or mark it as a solution.

Thank you