Okay
  Public Ticket #2646954
dots navigation
Closed

Comments

  • Parviz555 started the conversation

    Navigation dots (buttons) on the main slider only show after pressing the search button, how to enable them by default? (Demo 3)



  •  213
    Ali replied

    Hello, 

    Kindly go to Widgets.css file ( /assets/css/widgets.css)

    Add this code to Line 51:

    .slick-dots {
        /* display: -webkit-box; */
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        list-style-type: none;
        position: absolute;
        top: -30px;
        right: 15px;
        z-index: 2222;
    }

    Thanks.