elo1234
January 10, 2023, 11:47am
1
Is it possible to change the colour of the arrows on the product page (See screenshot). It is hard to see that there are more photos available (the arrow only changes the colour when hovering)
Or maybe there is a way of adding a number of photos that are uploaded (e.g. 1/4).
website : stockunion.co.uk
@elo1234
.slick-arrow {
color: #000 !important;
}
Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid
Like this
Hello @elo1234 ,
I would like to give you a solution to support you:
Go to Online Store-> Theme-> Edit code
Open your theme.liquid theme file
Paste the below code before :
<style>
.slick-arrow {
color: black !important;
}
</style>
Was my reply helpful? Please Like and Accept Solution. This mean alot to me.
elo1234
January 10, 2023, 12:18pm
4
@MandasaTech @oscprofessional
The solution works but the arrow is still not visible. It only appears when hover - Is it possible to make it stick so it doesn’t dissapear?
Ujjaval
January 10, 2023, 12:19pm
5
@elo1234
Put below css into theme.liquid file before closing Tag
Hello @elo1234
I would like to give you a solution to support you:
Go to Online Store-> Theme-> Edit code
Open your theme.liquid theme file
Paste the below code before :
<style>
.slick-arrow {
color: black !important;
}
.slick-prev-arrow {
left: 20px !important;
}
.slick-next-arrow {
right: 20px !important;
}
</style>
Was my reply helpful? Please Like and Accept Solution. This mean alot to me.
elo1234
January 10, 2023, 12:32pm
7
@MandasaTech
Pasted before body in theme.liquid but didnt work Still only appears on hover
@elo1234
Add this code
Go to Online Store-> Theme-> Edit code
Open your theme.liquid theme file
Paste the below code before :
<style>
.slick-arrow {
color: black !important;
opacity: 1 !important;
}
.slick-prev-arrow {
left: 20px !important;
}
.slick-next-arrow {
right: 20px !important;
}
</style>
Was my reply helpful? Please Like and Accept Solution. This mean alot to me.
@MandasaTech
It worked thank you for the solution!!!