Im making a portfolio site for my school and i already got the Dynamic database interaction with PHP MySQL, but now i want to make it a little bit fancier. I just dont know how to do this easily with my code. Or if theres a good plug-in to use to get this kind of result:
I really want to have this box grid with images, and when u hover over a image you can see the title and sub-title, also all of the boxes have to be the same size.
Here's the code i have right now that i want to style into this box grid.
<article>
<div class="image_small"><?php echo '<img src="data:image/jpeg;base64,'.base64_encode( $image ).'" width="250" height="200" />';?></div>
<div class="text_small"><h3><?php echo $title?></h3><br>
<p><?php echo substr($body, 0, $lastspace)?></p>
</div>
<div class="vak"><h4>Vak: <?php echo $category?></h4></div>
<div class="more_button"><?php echo "<a href='post.php?id=$post_id'><img src='images/more-button.png' width='70' height='30' border='0'></a>"?></div>
</article>