Hi,
I'm designing 6 buttons on screen, if I run the testview I see that my buttons are resized? How can this happen?
I want my buttons on the same size as I have designed in the design mode.
Hi Ahmet,
You need to set appropriate css styles for your button component.
solution:
Create new CSS asset.
Populate it with following CSS code:
pre
/* where mobilebutton_243 is your button name */
.ui-btn[name="mobilebutton_243"]{
width: 200px;
height: 50px;
}
/pre
Regards.
Thanks,