Currently in the process of creating a website template.
To see an example, visit Framework Login Page
The primary CSS file can be found here: master.css
The centralizing of the main parent div is proving to be a challenge.
This is the code I am using:
#body {
width: 100%;
background: url('pathtoimage.png');
}
#inner_body{
width: 800px;
margin: auto;
}
<body>
<div id="body">
<div id="inner_body"></div>
</div>
</body>
What could possibly be causing the issue?