Check boxes and radio buttons are not visible in Google chrome browser ?
Here is the quick fix
Add this to css
input[type=”checkbox”]{
-webkit-appearance: checkbox;
}input[type=”radio”]{
-webkit-appearance: radio;
}
SCWEBS Info Solutions PVT. LTD.
A useful blog with code assitance on Typo3, PHP, Apache, OpenSSL, Prestashop
Check boxes and radio buttons are not visible in Google chrome browser ?
Here is the quick fix
Add this to css
input[type=”checkbox”]{
-webkit-appearance: checkbox;
}input[type=”radio”]{
-webkit-appearance: radio;
}