Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Re: @Dan-From-Ryviu

How can I separate the navigation arrows in a slideshow code?

jacob44
Tourist
5 0 4

hello Dan i want to thank you about code you wrote which is great code to me the code was about style the navigation arrows in slidshow but i have problem iwant to make the arrows seperated like the photo here and thank you again 

the code you wrote before:

<style>
slideshow-component .slideshow__controls {
justify-content: space-between;
position: absolute;
top: 50%;
z-index: 9;
left: 50%;
width: 100%;
transform: translate(-50%, -50%);
border: unset;
}
slideshow-component .slideshow__controls .slider-counter,
slideshow-component .slideshow__controls .slideshow__autoplay {
display: none;
}
slideshow-component .slideshow__controls .slider-button {
width: 64px;
height: 84px;
}
slideshow-component .slideshow__controls .slider-button .icon {
height: 1.6rem;
}
@media (max-width: 749px) {
slideshow-component .slideshow__controls {
top: 30%;
}
}
</style>sss.JPG

Replies 8 (8)

darioaladuz
Shopify Partner
16 2 10

Hello @jacob44 ! 

If you could share your store URL and the password (if it has one), it'd be easier for us to help, however, try adding this to your code block right before </style> line (the last one)

slideshow-component .slideshow__controls {
  display: flex;
  align-items: center;
  gap: 24px;
}


I hope this helps! 

- Found my answer helpful? Please hit Like!
- Was your question answered? Mark it as an Accepted solution.
- Need a Shopify developer? LinkedIn
jacob44
Tourist
5 0 4

im using a free trial shopify i dont know if the site willwork for you 

AN Fashion (b29f38-3.myshopify.com)

 

darioaladuz
Shopify Partner
16 2 10

The store is protected by password, I need it in order to view it.

You can find the password in Online Stores > Themes > Manage password.

- Found my answer helpful? Please hit Like!
- Was your question answered? Mark it as an Accepted solution.
- Need a Shopify developer? LinkedIn
jacob44
Tourist
5 0 4

chiest

darioaladuz
Shopify Partner
16 2 10

They look like in the screenshot, I see that you already added the code!

 

If you could mark my answer as correct I'd highly appreciate it 🙂

If you've got any more doubts don't hesitate to reach out!

- Found my answer helpful? Please hit Like!
- Was your question answered? Mark it as an Accepted solution.
- Need a Shopify developer? LinkedIn
jacob44
Tourist
5 0 4

i want the arrows seperated as i said in the  463c917b-b7d3-44fd-9b90-6018a440eb8f.png

darioaladuz
Shopify Partner
16 2 10

Ah I see, in that case, change the following code like so:

slideshow-component .slideshow__controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
- Found my answer helpful? Please hit Like!
- Was your question answered? Mark it as an Accepted solution.
- Need a Shopify developer? LinkedIn
jacob44
Tourist
5 0 4

thanks but didnt work