Code: Select all
img {
padding: 10px
}
Moderators: Flumminator, Zomis
Code: Select all
img {
padding: 10px
}
Code: Select all
HTML:
<div class="screenshots">
<a href="Images/DD1_big.jpg"><img src="Images/DD1_small.jpg" alt="Screenshot 1" width="164" height="123"></a>
<a href="Images/DD2_big.jpg"><img src="Images/DD2_small.jpg" alt="Screenshot 2" width="164" height="123"></a>
<a href="Images/DD3_big.jpg"><img src="Images/DD3_small.jpg" alt="Screenshot 3" width="164" height="123"></a>
</div>
CSS:
.screenshots {
text-align: center;
margin-left: 10%;
margin-right: 10%;
background-color: #6A0035;
}
.screenshots a {
padding: 10px;
}
Actually you *did* include them! Mistaken the archive?I packed it in a zip file (without the downloads and all those screenshots of course).
Code: Select all
<table class="screenshots">
<tbody>
<tr>
<td> <a href="Images/DD1_big.jpg">
<img src="Images/DD1_small.jpg" alt="Screenshot 1" width="164" height="123"></a></td>
<td> <a href="Images/DD2_big.jpg">
<img src="Images/DD2_small.jpg" alt="Screenshot 2" width="164" height="123"></a></td>
<td> <a href="Images/DD3_big.jpg">
<img src="Images/DD3_small.jpg" alt="Screenshot 3" width="164" height="123"></a></td>
</tr>
</tbody>
</table>
Code: Select all
.screenshots {
text-align: center;
margin-left: 10%;
margin-right: 10%;
background-color: #6A0035;
}
.screenshots a {
padding: 10px;
}