Link to home
Start Free TrialLog in
Avatar of 33tpm
33tpm

asked on

horizontal css scroll gallery with captions

Hello,

I am completely new at css and trying to build a simple horizontal scroll gallery.
Finally the images line up nicely but I just cant get the captations to work (underneath - justify left)..
I also have not been able to determine the spacing between the images.

Any help would be highly appreciated

Thank you
Tom

the css

#content {

margin-top: 200px;
margin-left: 300px;
width: auto;
height: auto;
border-width: 25px;
white-space: nowrap;
}


the html


<div id="content">
<img src="images/001.jpg"/>
<img src="images/002.jpg"/>
</div>
Avatar of ziycon
ziycon
Flag of Ireland image

Try the below for the spacing.
#content img {
margin-right: 10px;
}

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of davekok
davekok
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of 33tpm
33tpm

ASKER

works beautifully !!! THANK YOU!! :)