Change List Button Size
In addition to these lines do you change list items height?
You can change only font-size, so height of list item will adjust automatically.
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/
In addition to these lines do you change list items height?
You can change only font-size, so height of list item will adjust automatically.
My mistake, I did not realize that "line-height" set the height of the text itself. I thought it set how high the text was displayed.
I did change font size as well.
Is there a way, to change how high in the list box the text is written? Like a vertical alignment?
Hello!
Yes, you can change font size. For centering use padding.
Hello Marco,
You can use padding property to center text.
In this case, code should be a bit modified:
preAppery("mobilelistitemName").closest("li").css("height","50px");
Appery("mobilelistitemName").css("font-size","12px");
Appery("mobilelistitemName").css("padding","19px");
/pre
Note, you will need to change pxs to adjust centering
Works perfectly,
Thank you Maryna and Alena!!