• I like to edit the style of the contact form submit button. I like to change the colour of the background and add hover to the button. Normaly I can locate the .CSS file and edit it. However changes in CSS have no impact. Do you know which file I have to edit?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • What color should appear? Have you try clearing cache?

    In style.css (in your child theme), try with !important. Here’s your code:

    input#cntctbttn {
        color: rgb(255, 255, 255);
        background-color: #5acf20!important; // I changed your background color to green
        border-radius: 4px;
    }
    
    input#cntctbttn:hover {
        background-color: #ffea01 !important; // I changed your background color to yellow
        color: #c92228 !important; // This is your text color
        border-color: #000
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Submit Button Style’ is closed to new replies.