[Resolved] Button Radius

Home Forums Support [Resolved] Button Radius

Home Forums Support Button Radius

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1265971
    Jose

    Hi,

    I have changed the buttons colors, but where I can change the radius? For all the buttons in my web?

    Regards,

    #1266366
    David
    Staff
    Customer Support

    Hi there,

    add this CSS:

    button:not(.menu-toggle),
    html input[type="button"],
    input[type="reset"],
    input[type="submit"],
    .button,
    .button:visited,
    .wp-block-button .wp-block-button__link {
        border-radius: 25px;
    }
    #1266377
    Jose

    It doesn’t work.

    The url is:

    http://www.noemibustelo.com/cursos/

    It ‘s for the caldera forms submit button.

    #1266437
    David
    Staff
    Customer Support

    OK its because Caldera uses its own HTML / CSS – include this selector:
    .caldera-grid input[type=submit]

    so your complete code looks like:

    button:not(.menu-toggle),
    html input[type="button"],
    input[type="reset"],
    input[type="submit"],
    .button,
    .button:visited,
    .wp-block-button .wp-block-button__link,
    .caldera-grid input[type=submit] {
        border-radius: 25px;
    }
    #1266460
    Jose

    Nothin, still not working. Maybe I can add a CSS class to the button?

    #1266468
    David
    Staff
    Customer Support

    You have some broken CSS.

    } <---- this bracket is not required.
    /*botón caldera forms*/
    button:not(.menu-toggle),
    html input[type="button"],
    input[type="reset"],
    input[type="submit"],
    .button,
    .button:visited,
    .wp-block-button .wp-block-button__link,
    .caldera-grid input[type=submit] {
        border-radius: 25px;
    }
    #1266599
    Jose

    Perfect, it works!

    Regards,

    #1267101
    David
    Staff
    Customer Support

    Glad to hear that

    #1370657
    Ash

    Where do you add this CSS for the button?

    #1370662
    David
    Staff
    Customer Support

    This:
    https://generatepress.com/forums/topic/button-radius/#post-1266437

    You would add to either your Customizer > Additional CSS or in your Child Themes styles.css

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.