Advertisement
Guest User

Twenty Sixteen adjust white space left and right of body

a guest
Jan 19th, 2017
456
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. /* Adjust width, add colour to body custom background and make responsive. Up to 14% keeps 1200 pixel width of site */
  2.  
  3. @media screen and (min-width: 56.875em) {
  4. body.custom-background {
  5. margin-left: 12% !important;
  6. margin-right: 12% !important;
  7. background-color: #e5edcd !important;
  8. }
  9. }
  10.  
  11. /* Add radius to background for rounded corners */
  12.  
  13. @media screen and (min-width: 56.875em) {
  14. .site {
  15. border-radius: 30px;
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement