Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,
    I’m really sorry but APP doesn’t have such options yet.
    The number of buttons are limited by post layout width. This is set in the files/js/jcarousel.responsive.js

    You can make any changes in this logic yourself. The current logic is this:

    if (width < 500) {
        width = width / 2;
    }
    else if (width >= 500 && width <= 750) {
        width = width / 3;
    }
    else if (width > 750) {
        width = width / 4;
    }
    itemsFullWidth = itemCount * width;
    $('ul.paging_btns li.button_style').css('width', width + 'px');

    The “width” is the pagination button width.
    The 500 and 750 are post layout widths

    Thread Starter thanhkiet89

    (@thanhkiet89)

    Thank you so much, i have solved this problem!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Custom button style’ is closed to new replies.