Reduce Mobile Slider Background Height

Posted in: Newspaper
Post count: 27

I’d like to reduce the height of the slider background on smartphones, so that there is less background visible above and below the slider so the slider uses less vertical space. What has to be added or changed to the css to achieve this?

Post count: 3343

Hi,
Use this CSS

/* responsive phone */

@media (max-width: 767px) {
  .td-big-slide-background .td_block_slide_big {
    padding-bottom: 0px;
  }

  .td-big-slide-background
  .td-grid-wrap {
    padding-top: 10px
  }
  .backstretch {
    height: 150px;
  }
}

Thanks!

Post count: 27

Thx, Marius.

Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.