Customizing arrows signs for collection / product previews dawn theme

Hello, I have already customized arrows before however they seem only to be appearing on mobile. I want those same type of arrows to appear on desktop, below are examples:

( ^ This is how the arrows look on desktop view now)

( ^ Here is the mobile view, I circled how I want the arrows to look on desktop view aswell)

Store: artisimo.es

pass: pongia

1 Like

Hi @JordiP

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.collection .slider-buttons {
    position: absolute !important;
    top: 0;
    transform: translateY(-63px);
    width: 100vw;
    justify-content: space-between;
    padding: 0 40px;
}

.slider-counter.caption {
    display: none;
}

.collection .slider-button .icon {
    height: 1rem;
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

Hello @JordiP
Go to online store ----> themes ----> actions ----> edit code ----> assets ---->component-slider.css
add this code at the end of the file.

.collection .slider-buttons {
    position: absolute !important;
    top: 0;
    transform: translateY(-63px);
    width: 100vw;
    justify-content: space-between;
    padding: 0 40px;
}

.slider-counter.caption {
    display: none;
}

.collection .slider-button .icon {
    height: 1rem;
}

If this was helpful, hit the like button and accept the solution.
Thanks

1 Like