I am trying to make images coming from links within my mySQL database appear next to each other. Here is my code:
<div class="container-outer">
<div class="container-inner">
<?php if ( $imagePath = $article->getImagePath( IMG_TYPE_THUMB ) ) { ?>
<a href=".?action=viewArticle&articleId=<?php echo $article->id?>"><img class="articleImageThumb" src="<?php echo $imagePath?>" alt="Article Thumbnail" /></a>
<?php } ?>
</div>
</div>
The images appear seperatly below each other and I can't quite figure out how to make them appear on the same line. Thanks!