I've been working on a project involving my phpmyadmin database generating a series of 6 images on my website. I've placed them in a table, but now I'm facing some challenges - even though it seemed simple at first!
The goal is to display the images in sets of three, all in one horizontal line.
Typically, I will have 6 images to display, so I need them arranged with good spacing and padding, 3 per row.
I've tried various approaches and experimented with CSS, but unfortunately, I couldn't achieve the desired layout.
Below are links to the actual page, how it currently looks, the CSS used for the table, and the script/code for the table:
Actual Page: https://i.stack.imgur.com/oh5nI.png
CSS for the table:
table.Evidence td {
padding:0px,10px,0px,0px;
}
Script for the table: https://i.stack.imgur.com/oZOUb.png
Although it may seem straightforward, I'm struggling to resolve this issue.
Any assistance or guidance would be greatly appreciated!
I am new to this, so please bear with me as I navigate through this learning process.