Website Design Help

chrisharnandez

Accident Attorney Califor
May 10, 2012
2
0
0
www.piattorneyca.com
Hi Experts,

I want some help you all, how can I give a space between a number of images in an order list with html:

Here is the format
<div>
<ul><a here="#"><img src="pic1.png"></a><a here="#"><img src="pic2.png"></a><a here="#"><img src="pic3.png"></a><a here="#"><img src="pic4.png"></a><a here="#"><img src="pic5.png"></a></ul><div>


When I use nsbp its shows a _ between the images.

Kindly help me out.

Chris:zzwhip:
 


Your code doesn't give me underlines, but anyway.

In your head,
<style type="text/css" title="text/css">
.space_my_images a {margin-right:5px;}
</style>

In your code,
<div class="space_my_images">
<a here="#"><img src="pic1.png"></a><a here="#"><img src="pic2.png"></a><a here="#"><img src="pic3.png"></a><a here="#"><img src="pic4.png"></a><a here="#"><img src="pic5.png"></a>
<div>

Look into css float as well.