Okay
  Public Ticket #2874448
cambiar forma de un boton
Closed

Comments

  •  16
    danielcs94 started the conversation

    Hola.

    Me gustaria que me dijerais como puedo cambiar la forma de un boton si no me gusta ninguno de los que viene con salient, o mediante CSS.

    Un boton por ejemplo asi:

  •  8,844
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .nectar-button {
      -ms-transform: skewX(-20deg);
      -webkit-transform: skewX(-20deg);
      transform: skewX(-20deg);
    }
    .nectar-button * {
      -ms-transform: skewX(20deg);
      -webkit-transform: skewX(20deg);
      transform: skewX(20deg);  
      display: inline-block;
    }

    Thanks


    ThemeNectar Support Team