I'm trying to put the text under the images but since the images aren't exactly the same size (And changing the image size is not an option) how can I make the text the same distance from the images?
Here is what I have
<html>
<head>
<title>
MaGa V1
</title>
<style type="text/css">
.row{overflow:hidden;} /* Fixes float */
.img_div {float:left;height:150px;width:200px;$;text-align:center;padding:0px;background:#121223;}
.img_div:not(:nth-child(2)){margin-right:0px;}
.img_div a{color:gold;}
</style>
</head>
<body bgcolor="white">
<div class="row">
<div class="img_div" style="margin-right: 32px">
<img class="vertCenterImage" src="./../images/Shadows over Innistrad/Shadows over Innistrad.png"/>
<figcaption>
<br>
<br>
<a href="./Shadows over Innistrad.html" target="_self">Shadows over Innistrad</a>
</figcaption>
</div>
<div class="img_div" style="margin-right: 32px">
<img class="vertCenterImage" src="./../images/Battle for Zendikar/Battle for Zendikar.png"/>
<figcaption>
<br>
<br>
<a href="./Battle for Zendikar.html" target="_self">Battle for Zendikar</a>
</figcaption>
</div>
</div>
</body>
</html>
` – zer00ne May 27 '16 at 21:26