CSS Rule not applying to SOME input types

I realized that these too CSS Rules do not apply to all input types except three or four

input[type="text"], input[type="password"], input[type="email"] { height: 34px; } input[type="text"], input[type="password"], input[type="email"], textarea { Declarations go here }

When creating a contact form which includes input types like “tel” “date” “drop down list” etc the page does not look nice(the css rules are not applied to them and it renders differently on sreen). I tried to find where the acture CSS file is in the theme but I could’nt. So I add this CSS code to Themes Settings (/wp-admin/themes.php?page=fl-theme-settings#code) and every thing works fine. I hope this should be included in future release of the theme.

input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="date"], select { height: 34px; } input[type="text"], input[type="password"], input[type="email"], textarea, input[type="tel"], input[type="date"], select { Declaration goes here }

Hi Joseph,

Thanks for pointing this out. We’ll look into it for the next release.

Justin