Mani Maran
Posts: 0
Joined: Tue Jul 21, 2015 12:49 am

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

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

Serhii Kulibaba
Posts: 150
Joined: Tue Aug 27, 2013 1:47 pm

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

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

Mani Maran
Posts: 0
Joined: Tue Jul 21, 2015 12:49 am

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

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

Mani Maran
Posts: 0
Joined: Tue Jul 21, 2015 12:49 am

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

Anybody answer me and my problem wasn't yet solved

Serhii Kulibaba
Posts: 150
Joined: Tue Aug 27, 2013 1:47 pm

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

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

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

Mani Maran
Posts: 0
Joined: Tue Jul 21, 2015 12:49 am

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

Thanks it's working!

Return to “Issues”