how to remove padding from left and right side? [closed]
Use the developer tools in your browser (i.e inspector in Chrome or firebug in Firefox) to see where the padding is coming from. Either the padding is applied to something other than the body, or the padding is applied to the body but is still overriding your CSS. For example: body.class { padding: 20px; } … Read more