How can I alter the color of next and previous arrows on my website?

Hi,

im looking to change the black box to white white black arrows for previous and Next

my site is https://luxurymrkt.com/collections/mens-bags-1

Hi @Luxurymrkt ,

This is Victor from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/theme.css->paste below code at the bottom of the file:

.icon.icon-chevron-right,
.icon.icon-chevron-left{
    fill: black !important;
}
a[title="Next page"],
a[title="Previous page"]{
    background: white !important;
}

Hope my answer will help you.

Best regards,

Victor | PageFly

Worked perfect thanks

Hi that worked perfect for most pages but not my designer collection pages

https://luxurymrkt.com/collections

Hi @Luxurymrkt ,

You can add this code to theme.css:

a[title="Next"],
a[title="Previous"]{
    background: white;
}