You are viewing a single comment's thread from:

RE: Ghost Class Recon Vessel [#inktober day 22 "Ghost"]

in #art5 years ago

Impressive! Great job on the challenge so far. How do you link to previous posts with thumbnails if I may ask?

Sort:  

I just used a two column table, I did it with html but there is a way to do it with markdown as well (you would have to look that up, I am more of an html guy). With a table you don't necessarily have to resize the images to thumbnail size as the table will dynamically resize the images to fit into two columns, but some steem front ends (e.g. partiko) don't display tables so I manually resized these images to 350px largest dimension just in case someone was looking on a front end that didn't display tables.
The html for a two column table is:

<table>
<tr>
<td>

Column 1 first row content

</td>
<td>

Column 2 first row content

</td>
</tr>
</table>

You would copy everything from the <tr> to the </tr> and paste it in before the </table> to add a second row. One note here is that for some reason Steem has issues if images touch html code so I added the line of space before and after the content inside each table cell. Let me know if you have any questions :) Cheers

Just copied it somewhere, thanks!