Thanks for the reply,
Thats the setup I have now, I guess I should have included the code, sorry about that
HTML
Code:
<div class="body_wrapper">
<div class="left_bar">
<img src="images/Derp_Left.jpg">
</div>
<div class="main_container">
<b>
<b>
<div class="right_bar">
<img src="images/Derp_Right.jpg">
</div>
</b>
</b>
</div>
*note: I certianly did not put in the <b> tags that appeared on its own, suggestions on how to fix this are greatly appreciated
CSS
Code:
.body_wrapper {
margin: 0 auto;
min-width: 1400px;
width: 90%;
}
.left_bar {
float: left;
width: 20%;
}
.left_bar img, .right_bar img {
width: 100%;
}
.main_container {
background-color: #221100;
float: left;
min-width: 960px;
padding: 0 0 20px;
width: 55%;
}
.right_bar {
float: left;
width: 20%;
}
I have been reading about responsive grid to make the content fit better across screens. My only concern is that the two side images may be too big or too small in comparision to the main container when its on the small screen (like 14") in order to make it fit.
I would prefer that all three elements dont scale or size down in the small screen, just the side columns bleed off the edge of each side when the screen gets too small leaving the main container centered in the middle.
Thanks a lot