Two column Support?

Would it be possible to get two column support? Granted one can just make a table, and a table is probably the way it needs to be handled, but in terms of the visual it would be awesome to write in one column and then have relevant images next to the text, or even two columns for photos. Opinions?

8 Likes

I’ll move this to #help for now. In Discord, the <aside> and <figcaption> tags were suggested for something similar to this in case you want to look into them.

You could also open a #feature-requests using the template if you want to officially request this.

2 Likes

markdown wont work inside the HTML tags but for just pure content in 2 columns there’s this code you can use. each column is represented by the +++

<div style="width: 100%;">
	<!-- THE LEFT COLUMN -->
		<div style="width: 48%; float: left; margin-right: 4%;">
			+++
		</div>
	<!-- END THE LEFT COLUMN -->
	
	<!-- THE RIGHT COLUMN -->
		<div style="width: 48%; float: left;">
			+++
		</div>
	<!-- END THE RIGHT COLUMN -->
</div>
10 Likes

Thank you both @tallguyjenks and @argentum. Excuse my incompetence in putting this in the wrong place. It was more of a conversation starter to see what was out there and if people were interested in it :slight_smile:

I will have a look at both those suggestions. Thank you.
I’ve joined the discord now to make it a bit easier to discuss.

2 Likes