Hello omfaonline,
Your image repeats on the X axis for the full width of .image-wrapper
Your .image-wrapper inherits it's width from parent #page-wrapper which has a max-width of 1050px;
see line 486 screen.css -
.two #page-wrapper {max-width: 1050px;}
You could remove that min-width and see what that does for you...but then you'll see you have some conflicting CSS. Look on line 56 screen.css -
Code:
#page-wrapper {
background: none repeat scroll 0 0 #FFFFFF;
height: auto !important;
max-width: 750px;
min-height: 100%;
position: relative;
z-index: 1;
}
Remove that min-width also, then see what your page looks like.