Big Slide Mobile

Posted in: Newspaper
Post count: 3

How can i make all the images on the slider the same size on mobile? Would like the bottom two posts the same size as the top ones.

mobile

  • This topic was modified 11 years by nvkodde.
Post count: 6600

Hi,

Try this custom css in theme panel > custom css filed: http://screencast.com/t/TAX71uLTBb
Adjust it as you like.

@media (max-width: 767px){
.td-big-grid-post-2, .td-big-grid-post-3 {
width: 100%;
}
.td-big-grid-post-2 {
border-bottom: 4px solid #fff;
}

.td-big-grid-post-1 .entry-thumb, .td-big-grid-post-2 .entry-thumb, .td-big-grid-post-3 .entry-thumb {
width: 100%;
height: 100%;
}
.td-big-grid-post-2 .thumb-wrap, .td-big-grid-post-3 .thumb-wrap {
border-right: 0px;
height: 100%;
}
.td-big-grid-post-2 .td-sbig-title-wrap, .td-big-grid-post-3 .td-sbig-title-wrap {
padding: 8px 5px 8px 5px;
}
.td-big-grid-post-2 a, .td-big-grid-post-3 a {
font-size: 17px !important;
line-height: 12px;
}
}

Thanks

Post count: 364

Hi, I tried this code for me but it’s not working. But anyway, what I’m looking for is a splited slider with only two images at once on mobile, but therefore resized images to a more 4:3 ratio aspect. Thanks, Loano

Post count: 6600

Hi,

Try this: http://screencast.com/t/Rb7Blab4dZ3y
You have the css code here: http://pastebin.com/peLMvJdE

Thanks

Post count: 364

Hi Lucian,

Thanks for that code. Unfortunately it doesn’t do exactly what I was looking for. 2 Post with 4:3 is perfect. But I want to see only 2 Post’s at once, not 4. How can I remove the 2 smaller once on top?

Thanks, Loano

Post count: 7909

Hi,

Unfortunately the theme doesn’t have an option to display only 2 posts on mobile. All 4 post appear together and are only rearranged, they aren’t separated. What you can do is to hide using custom css on mobiles but they will not appear when you click to show next.
So you can use Lucian’s code to show last 2 post on 100% width or hide last 2 posts – http://screencast.com/t/jm1nfRN3c6

@media (max-width: 767px){
.td-big-grid-post-2, .td-big-grid-post-3 {
display: none;
}
}

Thanks!

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.