Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1335820

    pangeaseed
    Participant

    Hi There,

    I’d like to change the border color and font color in the button shortcode.
    I’m using the shortcode within multiple Promo elements and would like to change the button colors accordingly.

    How can I do that?

    Thanks!

    #1335855

    Jade
    Moderator

    Hi there,

    The button settings are controlled in the customizer.

    Please go to Appearance > Customize > Buttons : Colors.

    Hope this helps.

    #1336007

    pangeaseed
    Participant

    Can I not change the colors of individual buttons?

    I don’t want to change the color of all buttons.

    #1336203

    Friech
    Moderator

    Hi There,

    Thanks for writing in! Add a class to your button shortcode (e.g. my-btn)

    And then add this on your custom CSS

    a.my-btn {
        border-color: blue;
        color: green;
    }

    Replace with the desired color values.

    You can also change the button background color with the background-color: property.

    Hope it helps, Cheers!