Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1154697

    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.

    #1154984

    Hey HU_Dallas,

    Could you post a link to where we can see the elements in question please?

    Best regards,
    Rikard

    #1155120

    Sure, I’ll add the link in the private content area. Thank you

    #1155284

    Hi,

    Thanks for that. Please try to decrease the padding to make them smaller:

    .avia-slideshow-dots a {
        padding: 5px;
    }

    Best regards,
    Rikard

    #1155667

    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

    #1155819

    Hi,

    Please try this instead:

    .avia-slideshow-dots a {
        padding: 5px !important;
    }

    Best regards,
    Rikard

    #1156207

    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

    #1156311

    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

    #1156481

    This worked, thank you for your help on this!

    #1156569

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Decrease size of content slide show dots’ is closed to new replies.