Hi there. I’m trying to decrease the size of the dots in the slideshow. I’ve targeted the class a.goto-slide and can make them bigger with no issue. If I try to make the width or height smaller than 10px it doesn’t change in size. I’ve tried using the !important property to override any css and that isn’t working. Any advice or suggestions would be greatly appreciated.
Hey HU_Dallas,
Could you post a link to where we can see the elements in question please?
Best regards,
Rikard
Sure, I’ll add the link in the private content area. Thank you
Hi,
Thanks for that. Please try to decrease the padding to make them smaller:
.avia-slideshow-dots a {
padding: 5px;
}
Best regards,
Rikard
Hi Rikard,
That didn’t seem to do anything after I tried that. Any other possible solutions you can think of?
Thanks again for the assistance on this
Hi,
Please try this instead:
.avia-slideshow-dots a {
padding: 5px !important;
}
Best regards,
Rikard
Hmm..I tried that too but with no luck. I don’t believe there’s any CSS overriding anything. If nothing can be done about getting them smaller just let me know and I’ll move on from this.
Thank you
Hi,
The previous solution worked in my browser, but you might have to add the height and width too:
.avia-slideshow-dots a {
height: 10px;
width: 10px;
padding: 5px;
}
If it’s not applying then try to add !important; after the arguments.
Best regards,
Rikard
This worked, thank you for your help on this!
Hi,
I’m glad this was resolved. If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon