We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Two buttons specific reposition

Solved

Two buttons specific reposition

nothingchanges
Explorer
69 0 18

Hi all!

 

I need some help with my website.

Website link : https://nothingchanges.com.my/

 

1. How to remove this extra spacing here. Refer image below

Screenshot 2025-06-14 at 1.24.30 AM.png

 

 

 

 

 

2. How to make the 2 buttons in the middle in each boxes and make the button transparent with white text and white outline? by using custom css code.

Screenshot 2025-06-14 at 1.24.36 AM.png

 

 

 

 

 

Thanks in advance!

Accepted Solution (1)
CodingFifty
Shopify Partner
1102 162 191

This is an accepted solution.

Try this code @nothingchanges 

@media screen and (min-width: 769px) {
    .slider--desktop .slider__slide:first-child {
        margin-left: 0px !important;
        scroll-margin-left: 0px !important;
    }
    div#Banner-template--24573836820843__image_banner_nWqxB7 .banner__buttons {
    display: inline-flex;
    flex-wrap: nowrap !important;
    gap: 55rem !important;
    max-width: 100% !important;
    word-break: break-word;
}
}
Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com

View solution in original post

Replies 6 (6)

CodingFifty
Shopify Partner
1102 162 191

Hey! @nothingchanges,


Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

@media screen and (min-width: 7690px) {
    .slider--desktop .slider__slide:first-child {
        margin-left: 0px !important;
        scroll-margin-left: 0px !important;
    }

div#Banner-template--24573836820843__image_banner_nWqxB7 .banner__buttons {
    display: inline-flex;
    gap: 59rem !important;
    max-width: 100% !important;
    justify-content: space-evenly !important;
}
}

 

Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com
nothingchanges
Explorer
69 0 18

Thank you! Everything worked except for the button reposition. Could you assists me by providing a CUSTOM CSS code instead?

CodingFifty
Shopify Partner
1102 162 191

This is an accepted solution.

Try this code @nothingchanges 

@media screen and (min-width: 769px) {
    .slider--desktop .slider__slide:first-child {
        margin-left: 0px !important;
        scroll-margin-left: 0px !important;
    }
    div#Banner-template--24573836820843__image_banner_nWqxB7 .banner__buttons {
    display: inline-flex;
    flex-wrap: nowrap !important;
    gap: 55rem !important;
    max-width: 100% !important;
    word-break: break-word;
}
}
Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com
nothingchanges
Explorer
69 0 18

which line should i paste it?

Screenshot 2025-06-14 at 5.25.48 AM.png

CodingFifty
Shopify Partner
1102 162 191

Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com
nothingchanges
Explorer
69 0 18

YOU ARE AMAZING! THANK YOU SO MUCH!