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

How can I move position of button on slideshow?

Solved

How can I move position of button on slideshow?

crescenthu
Excursionist
23 0 5

Hi!
How can I position the buttons on my homepage slide show to where it is on the screenshot?

crescenthu_0-1751033391659.png

I've tried using the content alignment function but it wasn't really where I wanted it to be.
Thanks in advance!
https://zq2pbf-di.myshopify.com/
Pw: theaba

Accepted Solution (1)

The_ScriptFlow
Explorer
201 17 25

This is an accepted solution.

Please paste the following code in the end of base.css file.

.slideshow__text.banner__box.content-container.content-container--full-width-mobile.color-scheme-1.gradient.slideshow__text--center.slideshow__text-mobile--center {
    transform: translate(174%, 170%) !important;
}

here is how you can find the base.css file.

Go to Shopify Admin >> Online Store >> themes >> Edit Code >> base.css file. Go to the end of this file and paste the provided code.

Thanks

- Need a Shopify Specialist? Chat on WhatsApp Or Email at info@thescriptflow.com
- For any custom section queries, bug fixing please visit: Level 2 Fiverr Profile
- Buy Me a Coffee? Nah… Let’s Upgrade to a Car
- If my solution was helpful, mark it as a solution and hit the like button!

View solution in original post

Replies 3 (3)

The_ScriptFlow
Explorer
201 17 25

This is an accepted solution.

Please paste the following code in the end of base.css file.

.slideshow__text.banner__box.content-container.content-container--full-width-mobile.color-scheme-1.gradient.slideshow__text--center.slideshow__text-mobile--center {
    transform: translate(174%, 170%) !important;
}

here is how you can find the base.css file.

Go to Shopify Admin >> Online Store >> themes >> Edit Code >> base.css file. Go to the end of this file and paste the provided code.

Thanks

- Need a Shopify Specialist? Chat on WhatsApp Or Email at info@thescriptflow.com
- For any custom section queries, bug fixing please visit: Level 2 Fiverr Profile
- Buy Me a Coffee? Nah… Let’s Upgrade to a Car
- If my solution was helpful, mark it as a solution and hit the like button!

loptimisator
Shopify Partner
7 1 1

Hi there,

 

You can position the buttons like in your screenshot by adding this CSS to your section:

.slideshow__controls.slider-buttons {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    border: none;
}

 

loptimisator_0-1751034383400.png

 

 

Edit: Read too quickly, thought you wanted to move the Previous/Next buttons. My bad!

Glad @The_ScriptFlow came up with the right solution 🙂

 

Cheers!

The_ScriptFlow
Explorer
201 17 25

I am glad tat it helps you.

If this was helpful please don't forget to Buy me a Coffee

- Need a Shopify Specialist? Chat on WhatsApp Or Email at info@thescriptflow.com
- For any custom section queries, bug fixing please visit: Level 2 Fiverr Profile
- Buy Me a Coffee? Nah… Let’s Upgrade to a Car
- If my solution was helpful, mark it as a solution and hit the like button!