Topic: Word Wrap around images

is there a way to make the words wrap around an image when editing a page using textile or markdown

Thumbs up

Re: Word Wrap around images

Yes there is. First you need to add this in your css file:

p img.left { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; } 
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

then you do something like this in textile (don't know for markdown):

!(left)/path/to/your/image.jpg!
!(right)/path/to/your/image.jpg!
Wolf CMS Paper Guy
Wolf CMS related blog / journal at Project 79 | Wolf CMS Docs

3

Re: Word Wrap around images

jackie wrote:

then you do something like this in textile (don't know for markdown):

I'm fairly certain that Markdown doesn't include support for adding id's or classes like Textile does. I use them this way:

- Markdown = faster to write, but fewer options
- Textile = good layout support, but more complex markup (= slower to write/learn)

FWIW