I noticed 2 CSS errors that should be fixed in config-woocommerce/woocommerce-mod.css. I understand that a lot of the errors are browser specific CSS (IE hacks) and will never be valid, but these 2 errors are syntax errors that should be fixed.
1. Line 150 #top #payment div.payment_box #888888 is not a box-shadow value : inset 0 1px 1px rgba(255, 255, 255, 0.5) #888888
– box-shadow doesn’t accept 2 color declarations. This should be 2 separate box-shadow properties. The 1st would be your backup for any browser that doesn’t understand rgba.
box-shadow:inset 0 1px 1px #888888;
box-shadow:inset 0 1px 1px rgba(255, 255, 255, 0.5);
2. Line 1672 .quantity input Value Error : border-style Too many values or values are not recognized : 1px
– border-style needs a keyword like solid, or dotted.
Hey voyageurweb,
I think Kriesi had good reasons to do it, especially to support older browsers. However, feel free to make a feature request for him here: kriesi.at/support/enfold-feature-requests/
Best regards,
Andy