Hello,
Is it possible to change the style for the value placeholder (see Screenshot) in the contactform?
i want to have opacity:0.4; for that element.
Hey Chris_85,
Could you provide us with a link to the site in question so that we can take a closer look please?
Regards,
Rikard
Hi Rikard, plz take a look to the private content
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
opacity: .4;
}
::-moz-placeholder { /* Firefox 19+ */
opacity: .4;
}
:-ms-input-placeholder { /* IE 10+ */
opacity: .4;
}
:-moz-placeholder { /* Firefox 18- */
opacity: .4;
}
Best regards,
Vinay
thanks :-) worked fine!