Okay
  Public Ticket #2803594
Remove Image previews from the Flickity Slider
Closed

Comments

  • mvgt started the conversation

    Hi,

    i was wondering if there is an easy way to remove the image previews from the flickity gallery slider? I would like to have just one image in the center with no previews left and right.

    Thanks in advance and best wishes

  •  8,847
    Tahir replied

    Hey mvgt ,

    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:not(.masonry) .flickity-slider .cell {
        opacity: 0 !important;
        transition: opacity ease-in-out 0.5s;
    }
    .nectar-flickity:not(.masonry) .flickity-slider .cell.is-selected {
        opacity: 1 !important;
    }

    Thanks


    ThemeNectar Support Team