Thumbnail Issues

Posted in: Newspaper
Post count: 131

Hi…

I tried block 6 and 9 for homepage but on responsive layout images are too small to see, is there anyway to show full images with 16:9 resolution in responsive layout?

Or else is it possible to show title on side of the thumbnail as on block 6 or 9 instead of showing it underneath the thumbnail.

Regards!

Post count: 7909

Hi,

You can use custom css to overwrite image size for mobile screens: http://screencast.com/t/yxt8K2b4eIr

@media (max-width: 767px){
.td_mod8 .thumb-wrap img {
max-height: 100px;
max-width: 150px;
}
.td_mod8 .item-details {
margin-left: 160px;
}
}

Thanks!

Post count: 131

Hi alin!

Can you tell me how can i increase the width of the thumbnail for block 3 on homepage? only for pc/desktop layout…?

Post count: 7909

Hi,

The block 3 image is cropped at 326x159px but you can try to do this with css code and add a min-width like this: http://screencast.com/t/gu9qKtmVDMi6

@media (min-width: 1019px) {
.home .td_block3 .thumb-wrap .entry-thumb{
min-width: 380px;
}
}

Thanks!

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