I've encountered an issue where the wrapper section of my site shifts left and right unpredictably when navigating to different pages. I would like to ensure that it stays fixed in place regardless of the page being accessed. You can view a visual representation of this problem here.
If you require additional code, such as HTML, please let me know and I will be happy to provide it. Below is the CSS for the entire website styling:
/*CSS FOR ALL PAGES*/
/*BODY/WRAPPER SECTION*/
body {
background: #EEEEEE;
background-repeat: no-repeat;
background-attachment: fixed;
}
#wrapper {
width: 1750px;
margin: 0 auto;
background-color: white;
border-radius: 5px;
box-shadow: 0px 1.5px 2px 0px;
border: 1.5px solid #E0E0E0;
color: #E0E0E0;
}
... (Additional CSS styles follow)