Forum Moderators: not2easy
Welcome to WebmasterWorld [webmasterworld.com] :)
Using CSS and HTML to do this is quite straight forward.
Firstly you'll need to place your images within a named container in your html - A <div> is typical.
Then use CSS to position and pad the images.
So it may look like:
html:
<div id="gallery">
<img src="1.jpg"><img src="2.jpg"><img src="3.jpg"><img src="4.jpg">
</div>
#gallery img {padding;0 10px 0 0;}
The above code snippet - in the HTML I named the container gallery. The CSS selects the gallery and says all images within it have padding to their right of 10 pixels.
:)
To do that you could add a margin to the container itself:
CSS
#gallery {margin:0 0 0 150px;}
Note the CSS short hand - CSS properties follow the compass top(0), right(0), bottom(0), left(150px).
More reading - lots of good stuff in here: [webmasterworld.com...]