Change color of the 1px line of the search form
-
Hi,
Is it possible to change the color of the 1px line of the search form?
See screenshot
Attachments:
You must be
logged in to view attached files.
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
.woodmart-search-form .searchform input[type=text]{
border: 2px solid red;
}
Set the thickness and color as per your needs
Best Regards
Wow, thanks, that worked 🙂
-> can I also change the color of the default text inside?
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
.whb-general-header .woodmart-search-form .searchform input[type=text]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: red;
}
.whb-general-header .woodmart-search-form .searchform input[type=text]::-moz-placeholder { /* Firefox 19+ */
color: red;
}
.woodmart-search-form .searchform input[type=text]:-ms-input-placeholder { /* IE 10+ */
color: red;
}
.whb-general-header .woodmart-search-form .searchform input[type=text]:-moz-placeholder { /* Firefox 18- */
color: red;
}
Best Regards