Viewing 5 replies - 1 through 5 (of 5 total)
  • SomewhatRounded

    (@somewhatrounded)

    If you’re using a Child Theme or Custom CSS plugin you can add in this with the appropriate colour code(s):

    .kad-btn {
        background: #77e7e3;
    }
    .kad-btn:hover {
        background: #000;
    }

    The first tidbit of css will change the colour for it’s normal state and the :hover will change the colour it turns when you mouse over it ??

    SomewhatRounded

    (@somewhatrounded)

    Oops, almost forgot, if it’s *only* that button that you’d like to change you can add the page’s class in there so it would be .page-id-104 .kad-btn {} instead.

    hannah

    (@hannahritner)

    Hey zsuleiman, you can paste the above code in your custom css box in theme options > advanced settings.

    Hannah

    Thread Starter zsuleiman

    (@zsuleiman)

    Hey Guys,

    Thanks for taking the time to help. So would the final code look like this?

    .page-id-104 .kad-btn {}
    background: #9ad6d6;
    }
    .kad-btn:hover {
    background: #000;
    }

    Regards

    hannah

    (@hannahritner)

    This for the background:

    .page-id-104 .kad-btn {
    background: #77e7e3;
    }

    And this for the background hover:

    .page-id-104 .kad-btn:hover {
    background: #000;
    }

    Hannah

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Contact Us "Send E-mail" button color’ is closed to new replies.