Small CSS optimization with fullscreen product search
-
The fullscreen product search input placeholder is black. It looks strange because it has the same color as input text. At the first look it looks like there is already a text input – but it is the placeholder text. The problem ist that it has the same color as the input text.
Attachments:
You must be
logged in to view attached files.
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
body .wrapper-search-full-screen .searchform ::-webkit-input-placeholder {
color: rgba(0, 0, 0, 0.6); }
body .wrapper-search-full-screen .searchform ::-moz-placeholder {
color: rgba(0, 0, 0, 0.6); }
body .wrapper-search-full-screen .searchform :-moz-placeholder {
color: rgba(0, 0, 0, 0.6); }
body .wrapper-search-full-screen .searchform :-ms-input-placeholder {
color: rgba(0, 0, 0, 0.6); }