http://maximuscare.nl/miami-ink.html I want two images per line with a description under each image. How can I fix this easily without ruining the html?
If it is in wordpress or any cms framework it is easy. If not, you will need to study html to fix or edit that.
Now you have this - <div id="images"> <img src="./images/MI_CounterDisplay_HR.jpg" width="200" height="200"> <img src="./images/MI_Fade_Shield30_Stick_HR.jpg" width="200" height="200" float="right"> <img src="./images/MI_Fade_Shield_Tube30_HR.jpg" width="200" height="200"><br> <br> .... </div> Do it like this - <div id="images"> <p><img src="./images/MI_CounterDisplay_HR.jpg" width="200" height="200"> This is description for the image.</p> <p><img src="./images/MI_Fade_Shield30_Stick_HR.jpg" width="200" height="200" float="right"> This is description for the image.</p> ... </div> Now this in the CSS - #images p { float: left; height: 300px; width: 200px; } Adjust the height width according to the image.