Clicky

How to make the text on a page wrap around the image

Place this code into your “Body” custom code field:

<script>
rsn.wrapText();
</script>

This will make the text on any text page wrap around the image on the right, rather than staying in its own column on the left.

If you want to apply this change to only a specific page, add the name of that page to the code:

<script>
rsn.wrapText('about-me');
</script>

Or, if you want to apply this change to multiple pages, list all their names separated by commas:

<script>
rsn.wrapText('about-me, contact');
</script>
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.