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
January 10, 2014 at 2:18 pm
#160095
Member
If you want ‘normal’ looking buttons for those particular two you might try making the styled selector a little more specific.
Since the styled inputs
are all inside menus and the ones you want unstyled are not this might do the trick.
Change
.enrollform input, .enrollform textarea, .enrollform select {
border:1px solid #707070;
}
to
.enrollform ul input, .enrollform textarea, .enrollform select {
border:1px solid #707070;
}
This will only affect inputs
inside unordered lists.
It’s a quick fix but it seems to work