Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2810090
Adding a button to a post
Closed

Comments

  • Angela started the conversation

    Hi,

    I added a button to one of my posts (see attachment) and I was wondering if it's possible to create a hover colour. I went through all the post colour customization options but I couldn't find anything that specified the colour or hover colour of a button. Please let me know - thank you.

  •  2,495
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS, then paste the following custom CSS code:

    .wp-block-button__link:hover {
        background-color: #f4cfd5;
        color: black;
    }
    .wp-block-button__link:hover span {
        color: inherit !important;
    }
    Change the color properties by your value.

    Regards,
    PenciDesign.

  • Angela replied

    Thank you so much. You guys are the best.

  •   Angela replied privately
  •  2,495
    PenciDesign replied

    Hi,

    Please replace the previous code with the following code:

    .wp-block-button__link:hover {
        background-color: #f4cfd5;
        color: black !important;
    }
    .wp-block-button__link:hover span {
        color: inherit !important;
    }

    Regards,
    PenciDesign.

  • Angela replied

    Thank you so much.