This problem was solved for you in another forum. I'm surprised that you haven't corrected it yet. Look in the style.css for this:
Code:
.theme-default #slider {
margin:100px auto 0 auto;
width:850px; /* Make sure your images are the same size */
height:300px; /* Make sure your images are the same size */
}
Correct to this:
Code:
.theme-default #slider {
margin:0 auto;
width:850px; /* Make sure your images are the same size */
height:300px; /* Make sure your images are the same size */
}
I did that on your CSS file and the gap disappeared. I also mentioned the other problems about style tags within the table tags and the validation errors you have.
Bookmarks