1. Home
  2. Docs
  3. Responsive Posts Carousel
  4. Developers
  5. Custom Break Points

Custom Break Points

We’re using the Slick slider for carousel rendering, so you can redefine the parameters and breakpoints in the custom.js file (assets\front\js\custom.js) and can override it from the theme. You have to place this file inside the rpc directory of current theme/child theme.

We’re using following breakpoints by default:

{
  breakpoint: 992,
  settings: {
    slidesToShow: GETTING_FROM_SETTINGS,
    slidesToScroll: 1,
  }
},
{
  breakpoint: 768,
  settings: {
    slidesToShow: GETTING_FROM_SETTINGS,
    slidesToScroll: 1,
  }
}