Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Input buttons incorrectly taking on CSS where none defined Reply To: [Solved] Input buttons incorrectly taking on CSS where none defined

#160084
Alen
Participant

/* form element visual styles */

.enrollform input,
.enrollform textarea,
.enrollform select {
  border:1px solid #707070; /* <<---- .enrollform input */
}
.enrollform input:focus,
.enrollform textarea:focus,
.enrollform select:focus {
  background: #fff;  /* <<---- */
  border:1px solid #555;  /* <<---- */
}