Big Form button

How to make my button bigger than usual,
ex: 5x height/width normal button

Thanks

Hi

you can add custom className to an item and change height/width with css

Hi Andrei
I did like this

bigbutton { width: 200px; height: 200px; }

Then append one button to Form:

{type: "button", name: "big_button", className: "bigbutton", value: "Big Button"},

size of width/height “big button” still same like default button.
Even changed css #bigbutton or .bigbutton still no change

Thanks

Hi mltobing
Try the next approach (for skyblue):

[code]

DHTMLX test .dhxform_obj_dhx_skyblue .bigbutton div.dhxform_btn div.dhxform_btn_txt { margin: 15px 45px; }
[/code]

Thanks Darya…its work

You are welcome!