How do I place text to the right or lefft of an imge in a row without adding a column. I’ve forgotten how to do this. Any help greatly appreciated.
Hi @randyrie
I’m new here but I think you’d try to place the image and text inside the same container. Select the container, set its display to “flex” in the Properties Panel, and choose “row” for the direction. Adjust alignment with “justify-content” (for example flex-start) and “align-items” (for example center). Add margins or padding as you need. Hope that helps.
display: inline-block
for both the image and the paragraph inside the same div container
Thanks @Blep fo refreshing my memory. This worked nicely!
1 Like