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?
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
how to increase width size and height size of the 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
Anybody answer me and my problem wasn't yet solved
Do you need increase list item's height?
you can use next CSS for that:
pre[name=mobilelist_40] a{
height:200px;
}/pre
Thanks it's working!