Okay
  Public Ticket #3216177
Page dots in slider
Closed

Comments

  • jorenprins started the conversation

    I created this self hosted video slider with (as of now) three videos just to test, but the page dots aren't showing. I tried some custom CSS from the flickity site, but that didn't work, so I deleted that.

    How do I get the page dots to show? I want them to show in the video, not underneath.

    Thank you!

  •  8,399
    Tahir replied

    Hey jorenprins ,

    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):

    .nectar-flickity[data-control-style=material_pagination] .flickity-page-dots, .nectar-flickity[data-controls=material_pagination] .flickity-page-dots {
        margin-top: -35px !important;
        visibility: visible;
        opacity: 1;
        pointer-events: all;
        position: relative;
        z-index: 9999;
        bottom: 45px !important;
    }

    Thanks


    ThemeNectar Support Team 

  • jorenprins replied

    Thanks a lot, that worked!

    Could you also please tell me how to get them to be white? They are black now.

    Thank you!

  •  8,399
    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):

    .flickity-page-dots .dot:before {
        background: #fff !important;
    }
    .nectar-flickity[data-control-style=material_pagination] .flickity-page-dots .dot:before, .nectar-flickity[data-controls=material_pagination] .flickity-page-dots .dot:before, .nectar-quick-view-box .flickity-page-dots .dot:before, .nectar-recent-posts-slider_multiple_visible .flickity-page-dots .dot:before, .nectar-woo-flickity .flickity-page-dots .dot:before, .testimonial_slider[data-style=multiple_visible_minimal] .flickity-page-dots .dot:before, body.material [data-bullet_style=see_through] .slider-pagination .swiper-pagination-switch:before {
        box-shadow: inset 0 0 0 5px #fff !important;
    }

    Thanks


    ThemeNectar Support Team