Remove Box-shadow and Border-radius CSS Properties

Here is how to remove the box-shadow and border-radius CSS properties from a whole website or an element. This can be used to remove these properties from the Wordpress 3 TwentyTen theme when you are creating a child theme.

*
{
box-shadow:none!important;
-moz-box-shadow:none!important;
border-radius:0!important;
-moz-border-radius:0!important
}

You can replace the * with .classname or #idname

Comments