Skip to content Skip to main navigation Skip to footer

How to change submit button colour

Welcome to QSM Support Forum. Forums QSM Pre-Sales How to change submit button colour

Tagged: 

Viewing 16 post (of 16 total)
  • Author
    Posts
  • #12532
    hazel jameshazel james
    Participant

    Yes! You can easily change the Submit button color using CSS. Try adding this to your Custom CSS or theme’s stylesheet:

    css
    Copy
    Edit
    button[type=”submit”] {
    background-color: #ff6600 !important; /* Change to your desired color */
    color: #ffffff !important; /* Text color */
    border-radius: 5px; /* Optional: Adds rounded corners */
    padding: 10px 20px;
    }
    Just replace #ff6600 with any color code you prefer. If you’re using a specific plugin, check its settings—some have built-in styling options. Hope this helps!

Viewing 16 post (of 16 total)
  • You must be logged in to reply to this topic.