Here are some examples of what a post with images might look like. If you want to display two or three images next to each other responsively use figure
with the appropriate class
. Each instance of figure
is auto-numbered and displayed in the caption.
Figures (for images or video)
One Up

Eine Demo für die Jungs.
Two Up
Apply the half
class like so to display two images side by side that share the same caption.
<figure class="half">
<a href="/images/image-filename-1-large.jpg"><img src="/images/image-filename-1.jpg"></a>
<a href="/images/image-filename-2-large.jpg"><img src="/images/image-filename-2.jpg"></a>
<figcaption>Caption describing these two images.</figcaption>
</figure>
And you’ll get something that looks like this:


Three Up von Pascal
Apply the third
class like so to display three images side by side that share the same caption.
config.tx_aloha {
topBar {
disable = 0
warningMessage.disable = 1
pageButtons {
edit.disable = {$tx_aloha.config.disablePageButtons.edit}
history.disable = {$tx_aloha.config.disablePageButtons.history}
newContentElement.disable = {$tx_aloha.config.disablePageButtons.newContentElement}
move.disable = {$tx_aloha.config.disablePageButtons.move}
newPage.disable = {$tx_aloha.config.disablePageButtons.newPage}
}
}
responsiveView {
buttons {
desktop.disable = 0
laptop.disable = 0
tablet.disable = 1
mobile {
disable = 1
// You can use this to set width interval for given view
#minWidth = 340px
#maxWidth = 340px
}
}
}
}
And you’ll get something that looks like this:


