Hi, i’m using Spotlight theme and i have a pagination bar that i cant seem to change the color of. would like it to be the same as the background #334843 and the dots/arrows to be #F3f3f3 , but changing the color pallet does not seem to do anything.
Any advice is appreciated
Flawless Norway
1 Like
Hi @PetterB ,
Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.
.slideshow__controls.slideshow__controls--top.slider-buttons.slideshow__controls--border-radius-mobile {
background: #334843 !important;
}
.slider-counter__link--active.slider-counter__link--dots .dot {
background: white !important;
}
.slideshow__autoplay path {
fill: white !important;
}
1 Like
Hi @PetterB
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- 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:
.slideshow__controls.slideshow__controls--top {
background: #334843;
}
.slider-counter__link--active.slider-counter__link--dots .dot {
background-color: #F3f3f3 !important;
}
.slider-counter__link--dots .dot {
border-color: #F3f3f3 !important;
}
.slideshow__autoplay path {
fill: #F3f3f3 !important;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like
Hi @PetterB
This is Richard from PageFly - Shopify Page Builder App
Please add this code to your theme.liquid above the to get this solved
Step 1: Online Stores > Themes > More Actions > Edit code
Step 2: click on theme.liquid and paste the code above the
Hope this can help you solve the issue
Best regards,
Richard | PageFly
1 Like
Thank you for your solution, worked like a charm. The page was instantly smoother. 
1 Like