Removing Padding and Margins at Bottom of Page
-
HI,
I am working within a child’s theme of Twenty Twelve and I am trying to remove the ugly big white spaces from within the pages of my website (englishwithruti.com). I have found the location of the CSS for this:
‘.site-content article {
border-bottom: 4px double #ededed;
margin-bottom: 72px;
margin-bottom: 5.142857143rem;
padding-bottom: 24px;
padding-bottom: 1.714285714rem;
word-wrap: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
}’But when I try to override it by adding the following to my style.php sheet, for whatever reason nothing changes:
‘.site-content article {
border-bottom: 0px single #ededed;
margin-bottom: 0px;
margin-bottom: 0;
padding-bottom: 0px;
padding-bottom: ;
word-wrap: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
}’I am baffled and would love whatever help I can get to figure this one out.
Thank you!
- The topic ‘Removing Padding and Margins at Bottom of Page’ is closed to new replies.