Page 1 of 1

Square TIWCGJQButton

PostPosted: 29 Apr 2015 23:07
by RaelB
Hi,

Is it possible to display TIWCGJQButton without rounded corners?

Thanks
Rael

Re: Square TIWCGJQButton

PostPosted: 30 Apr 2015 10:03
by Alexander Bulei
Hi Rael,

Yes you can.

You have 2 ways to do that:

  1. Set the custom css class on ButtonCss.
    Css code for the css rule:

    css code
    .mybutton{
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    }
  2. Define the style on Button, property Style:
    30-04-2015 10-00-03.png

Help topic: viewtopic.php?f=5&t=1539

Best Regards.