Home Forums WoodMart support forum Small CSS optimization with fullscreen product search

Small CSS optimization with fullscreen product search

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #41328

    getimo
    Participant

    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.
    #41345

    Artem Temos
    Keymaster

    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); }
Viewing 2 posts - 1 through 2 (of 2 total)