user2759575
user2759575

Reputation: 553

Simple_form color styling

Is it possible to change the default color of the simple_form input box from grey to another color with CSS? Here is my CSS:

.simple_form div.input {
    width: 500px;
    display: block;
    margin-bottom: 0px; 
}

Upvotes: 0

Views: 833

Answers (1)

doitlikejustin
doitlikejustin

Reputation: 6363

Yes, use color:

.simple_form div.input {
    color: #ff0000; /* red */
}

To change border:

.simple_form div.input:focus {
    border: 1px solid #ff0000; /* red */
}

Upvotes: 1

Related Questions