I would expect a moderator to direct this search to a css forum BUT the search form doesn't have a specific css declaration. It's set up somewhere in the back end with php and so the css only seems to allow us to style the text from which the search form uses. I want to customise the search button (icon of a magnifying glass) and put it within the text field container to the right and have the word "search" display by default at the left of the text field container. YES the styling will be accomplished using css BUT, the search form is made with php..
Or am I wrong?
If I'm right, how do you modify the php to make a new css to allow you style the search form?
The only thing I've found in the css which affects the search bar is:
/* Form fields */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
textarea {
padding: 6px;
padding: 0.428571429rem;
font-family: inherit;
border: 1px solid #ccc;
border-radius: 3px;
}