Newbie Content Editor Question
Permalink 1 user found helpful
If I am adding text and images to a block, is there any way to have the text wrap around the image instead of sitting above or below it?

You can align the image after adding it by clicking on the image icon in the editor toolbar and then align the image to the left or right. Then the text should wrap around the image.
Thank you. That was very helpful!
I generally add some sort of padding css class to the typography.css file to use on the image to give it some breathing room too.
like:
#container .padImageLeft {
padding:0px 0px 0px 10px;
}
#container .padImageRight {
padding:0px 10px 0px 0px;
}
The text editor looks for styles in this file to show up in the Styling dropdown.
Unfortunately, the editor also appears to have a separate caching system, so the options may not appear immediately when you add them.
like:
#container .padImageLeft {
padding:0px 0px 0px 10px;
}
#container .padImageRight {
padding:0px 10px 0px 0px;
}
The text editor looks for styles in this file to show up in the Styling dropdown.
Unfortunately, the editor also appears to have a separate caching system, so the options may not appear immediately when you add them.