I have a Child theme for twentytwelve I am using. It has been checked to be CSS level 3 valid free of errors.
/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
.site {
margin: 0 auto;
max-width: 960px;
max-width: 68.571428571rem;
overflow: hidden;
}
In the child theme I'm actively using, even though the original is imported, I placed the following
/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
/*BEGIN MY RESET*/
/*Site background overall*/
.site {
max-width: 100% !important;
background-color: #fff;
}
However only the former seems to take effect and the latter doesn't seem to be applying from the child theme i'm using.
Anyone please advise?
My child theme css: view-source:http://stanleyss.com/wp-content/themes/twentytwelvechild/style.css
My parent theme css: http://stanleyss.com/wp-content/themes/twentytwelve/style.css