Page 1 of 1

how to increase the width and height of thumbnail in the list?

Posted: Sun Aug 09, 2015 6:29 pm
by Mani Maran

how to increase width size and height size of the thumbnail in the list?


how to increase the width and height of thumbnail in the list?

Posted: Sun Aug 09, 2015 7:38 pm
by Serhii Kulibaba

Hello Mani,

You can do it via JS:
$("[name=mobilelistName] li a img").css({"max-width": "100px", "width": "100px"});

or via CSS:

[name=mobilelistName] img{
max-width: 100px!important;
width: 100px!important;
}

where mobilelistName - name of the mobile list component


how to increase the width and height of thumbnail in the list?

Posted: Sun Aug 09, 2015 8:22 pm
by Mani Maran

width of the thumbnail changed but height of the thumbnail remains the same, no improvements

[dsid=mobilelist_40] img {
max-width: 170px !important;
width: 170px !important;
max-height: 300px !important;
height: 300px !important;
}
Image


how to increase the width and height of thumbnail in the list?

Posted: Mon Aug 10, 2015 11:29 am
by Mani Maran

Anybody answer me and my problem wasn't yet solved


how to increase the width and height of thumbnail in the list?

Posted: Mon Aug 10, 2015 5:00 pm
by Serhii Kulibaba

Do you need increase list item's height?
you can use next CSS for that:

pre[name=mobilelist_40] a{
height:200px;
}/pre


how to increase the width and height of thumbnail in the list?

Posted: Mon Aug 10, 2015 5:07 pm
by Mani Maran

Thanks it's working!