Ahhhh i see what you're saying! Sorry a little slow today! I not too sure if you can style that without another html page.
You could try and get at it by specifying:
Code:
img { margin-left: xxxpx;}
which should style it but may require you to set margin-left: 0; on some of the images in your gallery if they do not have more specific rules concerning their margins already applied to them.
for instance if you applied the img rule above in your css and it affected your gallery images then you could set this:
Code:
ul.gallery li a img { margin-left: 0;}
which would override the img rule set earlier. Hope that makes sense. Give it a go and let me know
Bookmarks