I recently completed this website based on a PSD design, using basic CSS techniques. However, I am encountering an issue with unwanted padding on the sides of the site when viewed on mobile devices and tablets. I would like the left and right edges of the site to align perfectly with the edges of the browser, as there is approximately 20px of unnecessary padding that I want to eliminate.
If you would like to take a look at my development site, you can visit it here:
I have tried removing the "margin: 0 auto" property from the container div, and it does solve the padding issue. However, I need that property in place for the site to display correctly on desktop screens.
.container {
width: $w_total;
margin: 0 auto;
}
If you have any suggestions or tips on how to resolve this problem, I would greatly appreciate your assistance. Thank you!