ohh, also, how can i make the Caption in two rows as well if i have a long text(s)?
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/
ohh, also, how can i make the Caption in two rows as well if i have a long text(s)?
Hello John,
You can use CSS. Set button "Class Name". Add CSS style:
code
.buttonClassName {
white-space: normal;
width: 50px;
}
/code
Igor, i just tried this code and all this code does is fix the width. WHats the code to fix the with and wrap the remaining text on a 2nd line?
Try the following CSS:
code.buttonClassName {
width: 30%;
}
.buttonClassName .ui-btn-inner{
white-space: normal;
}/code
Hello,
Set "Class Name" for header. Then add css:
code
.className {
height:20px;
}
/code