The reset.css file in the OM Core CSS directory contains a small error:
input[type=text], textarea, select { border: 1px solid #ccc; padding 2px; color: #666; }
A colon should be added right after padding, so the line should look like this:
input[type=text], textarea, select { border: 1px solid #ccc; padding: 2px; color: #666; }
Comments
Comment #1
danielhonrade commentedThanks MacCune!
Comment #2
danielhonrade commented