Taller mobile slider

Posted in: Newspaper
Post count: 63

Hi,

is it much work to make the slider on mobile taller? I’m thinking 2 x the height it’s currently set at

Post count: 170

agree

Post count: 3343

Hi,
Edit td_module_slide_big.php file like here http://screencast.com/t/2PP0ElYr
art-slide-small

Add this in CSS panel:

@media (max-width: 767px) {
  .td_block_slide_big .iosSlider-col-3,
  .td_block_slide_big .iosSlider-col-3 .item {
    height: 340px !important;
  }
}

Thanks for the message!

Post count: 63

perfect! Thanks 🙂

Post count: 52

If you want to keep the whole image and not just have a really zoomed in image, then keep td_module_slide_big.php as is, and simply add the following code to your CSS. You can see how it turns out at my testing site: http://www.teabear.com/sandbox/


@media (max-width: 767px) {
  .td_block_slide_big .iosSlider-col-3,
  .td_block_slide_big .iosSlider-col-3 .item {
     min-height: 190px !important;
  }
} 
Post count: 170

THANKS!

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