Home > Net >  Form input placeholder disappears in responsive mode
Form input placeholder disappears in responsive mode

Time:12-12

I'm using this free theme - enter image description here

@media (min-width: 241px) and (max-width:768px)
{
   #s::placeholder 
   {
       color:000;
   }
}

if not work media query :

#s::placeholder 
 {
      color:000;
 }

CodePudding user response:

Somewhere the color white is set for the placeholder. Try to set the color you want as important.

I hope, I helped you

input#s::placeholder {
    color: black !important;
}
  • Related