Title: Custom button style
Last modified: August 22, 2016

---

# Custom button style

 *  Resolved [thanhkiet89](https://wordpress.org/support/users/thanhkiet89/)
 * (@thanhkiet89)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/custom-button-style/)
 * Hi,
 * Any way for me to custom style of button? I want to reszie button and change 
   the font size. ‘Cause in some case i need to show more than 3 buttons with title
   in a page. Now, the limit is 3, and the next button will show in carousel.
 * [https://wordpress.org/plugins/advanced-content-pagination/](https://wordpress.org/plugins/advanced-content-pagination/)

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

 *  [Tomdever](https://wordpress.org/support/users/tomdever/)
 * (@tomdever)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/custom-button-style/#post-5386427)
 * 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](https://wordpress.org/support/users/thanhkiet89/)
 * (@thanhkiet89)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/custom-button-style/#post-5386441)
 * 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.

 * ![](https://s.w.org/plugins/geopattern-icon/advanced-content-pagination_7b6e6a.
   svg)
 * [Pagination For Posts](https://wordpress.org/plugins/advanced-content-pagination/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/advanced-content-pagination/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/advanced-content-pagination/)
 * [Active Topics](https://wordpress.org/support/plugin/advanced-content-pagination/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/advanced-content-pagination/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/advanced-content-pagination/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [thanhkiet89](https://wordpress.org/support/users/thanhkiet89/)
 * Last activity: [11 years, 7 months ago](https://wordpress.org/support/topic/custom-button-style/#post-5386441)
 * Status: resolved