I’m attempting to switch to the newer form of app after only previously learning the classic app system. Previously I was able to use a rich text object to display images side by side using custom style css.
With the new system I can’t seem to find a way to show objects side by side when in the mobile view, they always show in a column. Is there some custom CSS I can use to do this? I am not very familiar with using html code or css so any help would be very much appreciated.
In new apps the css goes under settings → appearance. You could give the rich text component a class name under options or directly in the html itself.
One way to keep a 2 column container in both desktop and mobile is to give a 2 column container the class name grid under the options for the container.
Then under settings → appearance use this css
.grid .oneToOne {
grid-template-columns: repeat(2, minmax(0px, 1fr));
}
Hat tips to @Himaladin. Look out for anything that guy posts about css he’s very good.
Thanks Eric!
That’s the closest I have gotten so far 
Is this method limited to 2 columns only? Or is it possible to scale this up to work the same way with 3 or 4 columns?
You’re welcome! For 3 or 4 columns you could adjust the repeat. I’m away from my computer right now but I think it should look like this.
.grid-container .threeColumns {
grid-template-columns: repeat(3, minmax(0px, 1fr));
}