Forum Moderators: open
And also, how do I make the header on the next line look normal?
After the two images, there should be a new line underneath.
But instead it's squeezed in next to the right hand image.
<h2>Header text here</h2>
<table>
<tr>
<td>
<img src="image1.jpg" alt="some_text"/>
</td>
<td>
<img src="image2.jpg" alt="some_text"/>
</td>
</tr>
</table> <table>
<tr>
<td>
<a href="image1-big.jpg" class="MagicMagnify"><img src="image.jpg" alt="some_text"/></a>
</td>
<td>
<a href="image2-big.jpg" class="MagicMagnify"><img src="image2.jpg" alt="some_text"/></a>
</td>
</tr>
</table> <table class="imageboxes">
<tr>
<td>
<a href="image1-big.jpg" class="MagicMagnify"><img src="image.jpg" alt="some_text"/></a>
</td>
<td>
<a href="image2-big.jpg" class="MagicMagnify"><img src="image2.jpg" alt="some_text"/></a>
</td>
</tr>
</table> .imageboxes {
width: 383px;
margin: 5px;
padding: 15px;
border: 1px solid black;
}
.imageboxes td {
width: 383px;
margin: 5px;
padding: 15px;
border: 1px solid black;
} If I change the width to something else (like 100px), the image sizes doesn't change for some reason.
Am I doing something wrong here?