Changing the colour of the SUBMIT button
-
Does anyone know how I can change the colour of the text within the SUBMIT button in FIRST? Is the text color of the SUBMIT button something that must be changed in php files because of the inbuilt theme colour picker in FIRST?
I cut and pasted the following code from WRITE into the additional CSS in the customiser, because the black SUBMIT button in FIRST and GRAPHY are too bold for the gentle, elegant look I’m trying to achieve, but the text remains the same pale colour as it was in the original black SUBMIT button. On pages where I can customise the background colour of the button within WordPress’s text editor, I still can’t change the colour of the word SUBMIT.
button, input[type="button"], input[type="reset"], input[type="submit"] { background-color: #e6e6e6; border-bottom: solid 1px #ccc; border-left: solid 1px #ddd; border-right: solid 1px #ccc; border-top: solid 1px #ddd; font-size: 87.5%; line-height: 1; padding: 0.9em 1.5em; text-shadow: 1px 1px 0 #fff; text-transform: uppercase; transition: .15s ease-in-out; } button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover { background-color: #ededed; }
Any advice would be appreciated.
- The topic ‘Changing the colour of the SUBMIT button’ is closed to new replies.