Positioning problem - maybe?

Hi, I just set up the main page of my first website:

www.zircona.net

However, as you can see, there’s all that white space between the pictures and the left column. When I did the design for it, it was on a smaller screen so it looked perfect, however, on a bigger screen there’s a lot of space.

How do I get the pictures to be about 20px to the right of the vertical dotted line? Thanks for any help.

Zircona,

You do not have a width defined for the div that contains other divs for your images and text. This fixed the issue for me in chrome,

#right-column
{
height: 540px;
width: 600px;
}
Hope that helps,

Shawn

Thanks Shawn, that did help.