Okay
  Public Ticket #3052026
Hiding Pagination Dots
Closed

Comments

  •  2
    mzowada started the conversation

    Hey, I'm using the fickity carousel. I want to hide the pagination dots on the iPad and phone (I only want the pagination dots on desktop).

    I found the code to hide the owl pagination dots on mobile, do you have the css to hide the mobile pagination dots for the flickity carousel?

  •  8,712
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    @media only screen and (max-width: 1000px) {
        .nectar-flickity[data-control-style=material_pagination] .flickity-page-dots, .nectar-flickity[data-controls=material_pagination] .flickity-page-dots {
            display: none !important;
        }
    }

    Thanks


    ThemeNectar Support Team