Your site is looking good webgfx

.
Hi Super000.
The part you will need to change in the css_template.css file :
The body tag controls the center alignment and the container div controls the width of the main content area.
QUOTE:
body {
width:100%;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #BCBCBC;
background: #191919;
margin: 0 auto;
text-align: center;
padding: 0;
}
#container {
width: 1000px;
max-width: 2048px;
margin: 0 auto;
padding: 0;
}
You can override the center alignment of the body by floating the container div to the left.
QUOTE:
#container {
width: 1000px;
max-width: 2048px;
padding: 0;
float:left;
}
This should keep everything over to the left side for you.
At 1000px fixed width though you may start to see a large empty space appearing to the right on larger screen resolutions.
If you take out the width 1000px, the template will become fluid and resize depending on the size of the browser. The size of some of the graphics do not really suit smaller than 1024x768 resolutions though.
You may have to add a little bit of extra left/right padding , eg: 5px or 10px, to the lcol & rcol divs , as the left and right columns push right up against the side of the browser window with no fixed width on the container div.
Padding is in CSS shorthand format
top - right - bottom - left
QUOTE:
padding: 0 20px 0 5px ;
Hope that works for you.. Let me know if you have any problems.
