How do I place text right below the images ?
Is there a simpler / better or more correct way to do it ?
I tried :
<!-- logo 4 colours –>
<div class=“wrap block-2”>
<a href=“#”><img src=“images/page2-img1.jpg” alt=“” class=“img-border”></a>
<a href="#"><img src="images/page2-img2.jpg" alt="" class="img-border"></a>
<a href="#"><img src="images/page2-img3.jpg" alt="" class="img-border"></a>
<a href="#" class="last"><img src="images/page2-img4.jpg" alt="" class="img-border"></a>
</div>
<div class="wrap block-2">
<span class="txtbelowimage1" >txt txt txt </span>
<span class="txtbelowimage2" >txt txt txt </span>
</div>
<!-- /// logo 4 colours + text –>
css =
.txtbelowimage1 {
padding:8px;
margin:18px;
}
.txtbelowimage2 {
padding:8px;
margin:38px;
}