Before you ask please READ THIS

Can't change the color of the Submit Button for password protected post and Contact button.

edited January 2014 in Superior Posts: 66
I tried changing the colors of all the buttons and have figured most of them out, however, there are some buttons and their hovers that aren't changing to the correct color. I want to eliminate everything that has the default green color.

Here's the css that I've tried on my own:

input[type="submit"], a.a13-button, a.more-link {
background-color:#6CB933;
}

input[type="submit"]:hover, input[type="submit"]:focus, a.more-link:hover, a.a13-button:hover, a.project-site:hover {
background-color: #109306;
}
Here's the css I've tried by searching the support forum:
input[type="submit"],
a.a13-button{
background-color: #109306;
color: #fff;
}
input[type="submit"]:hover,
input[type="submit"]:focus{
background-color: #6CB933;
}
AND
form.contact-form input[type="submit"]{ /* normal color */
background-color: #109306;
}
form.contact-form input[type="submit"]:hover{ /* hover color */
background-color: #6CB933;
}
If you need to see the page to know what I'm referring to, you can find it at http://www.alexnavas.com/an and http://www.alexnavas.com/an/contact

Thank you for your help.
Post edited by Air on

Comments

  • AirAir
    Posts: 10,970
    Hello:-)

    Thanks to your report I found issue in our theme.
    When you added input[type="submit"] to custom css it is displayed as input[type=\"submit\"] and that is why it is not working.

    I will fix it in next version

    For now go to superior\advance\user-css.php ana at end of that file make such change
    /* ==================
    CUSTOM CSS
    ==================*/
    $custom_CSS
    ";
    to
    /* ==================
    CUSTOM CSS
    ==================*/
    ".stripslashes($custom_CSS)."
    ";
    Next change some theme options so user.css will refresh.

    With regards.
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion