Need to remove part of pagination

Discussion in 'jQuery' started by qwikad.com, Jul 25, 2014.

Thread Status:
Not open for further replies.
  1. #1
    Right now it pushes any number of slides. I want it to push 8 slides at a time only (back or forth):

    http://qwikad.com/test.php

    Hope it makes sense. Shoot me a question if you want me to clarify more.

    The javascript in question: http://qwikad.com/test.txt
     
    Last edited: Jul 25, 2014
    qwikad.com, Jul 25, 2014 IP
  2. homer7

    homer7 Well-Known Member

    Messages:
    268
    Likes Received:
    25
    Best Answers:
    4
    Trophy Points:
    125
    #2
    Not sure why changing the background color didnt work, the js plugin doesn't set the color property it sets the class.
    your option is to set a new class to override the default one

    var mySwiper = new Swiper('.swiper-container',{
    pagination: '.pagination',
    paginationClickable: true,
    slidesPerView: 8,
    paginationVisibleClass: 'gray-bullets'
    })

    .gray-bullets {
    background: #696969;
    }
     
    homer7, Jul 25, 2014 IP
  3. qwikad.com

    qwikad.com Illustrious Member Affiliate Manager

    Messages:
    7,279
    Likes Received:
    1,696
    Best Answers:
    31
    Trophy Points:
    475
    #3
    I think you misunderstood me. I know how to change their color.

    What I want is I want them to be gone. Totally gone.

    You see, those red ones push the slider one slide at a time. I don't need it. I only want to push 8 slides at a time.
     
    qwikad.com, Jul 25, 2014 IP
  4. homer7

    homer7 Well-Known Member

    Messages:
    268
    Likes Received:
    25
    Best Answers:
    4
    Trophy Points:
    125
    #4
    homer7, Jul 25, 2014 IP
  5. qwikad.com

    qwikad.com Illustrious Member Affiliate Manager

    Messages:
    7,279
    Likes Received:
    1,696
    Best Answers:
    31
    Trophy Points:
    475
    #5
    GOT THIS SOLVED. MAYBE THE MOD CAN DELETE THIS. THANKS!
     
    qwikad.com, Jul 25, 2014 IP
Thread Status:
Not open for further replies.