SOLVED

Wrapping text around an image

Go to solution
Anonymous
Not applicable

Wrapping text around an image

Is there an easy way to wrap text around an image?
Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Michelle_Tizian
Level 10

Re: Wrapping text around an image

Adding to what Rajesh above, you can also adjust the space between the image and text above and below and side by selecting the image appearance tab and adding a numerical value to horizontal and vertical space.  Sometimes I add 5. 

View solution in original post

8 REPLIES 8
Anonymous
Not applicable

Re: Wrapping text around an image

I believe you are talking about in email. What happens if you simply drang and drop your image on top of the text?
You can fine tune the wrapping and placement by changing the Appearance section on the insert image dialog.


Anonymous
Not applicable

Re: Wrapping text around an image

You'll need to use custom code for that.  

For the image to be on the left, you'll need something along the lines of <img src="marketo.jpg" align="left">

Michelle_Tizian
Level 10

Re: Wrapping text around an image

Adding to what Rajesh above, you can also adjust the space between the image and text above and below and side by selecting the image appearance tab and adding a numerical value to horizontal and vertical space.  Sometimes I add 5. 
Anonymous
Not applicable

Re: Wrapping text around an image

I am having the same issue. I understand I can add it to the HTML within a text box, but it seems like adding an align left/right and an hspace or vspace shouldn't be as difficult as I am finding it. I am in the Landing Page Designer and I don't see any image appearance tab.
Anonymous
Not applicable

Re: Wrapping text around an image

Actually, it's easier to do this with CSS. Use something like this:

Float image left:
<img src="marketo.jpg" style="float:left">


Float image right:
<img src="marketo.jpg" style="float:right">

Add padding to image:

<img src="marketo.jpg" style="float:left;padding:3px">

In the CSS property inspector, add a value of float and specify if you want it right/left.

Anonymous
Not applicable

Re: Wrapping text around an image

That's really not easier. It is more difficult. I thought one of the big advantages of this system is that you don't need to deal with code. I can't "drag and drop" an image and not add an hspace or get the text to wrap?

What I wound up doing is making a rich text box and putting everything in there. Still not optimal, but it appears that is the best I can do.
Anonymous
Not applicable

Re: Wrapping text around an image

Percy C's recommendation is quite easy. The code examples he gave all work perfectly. As a new Marketo user, I was able to easily get text wrapping and padding to the image.
Elana_Shama
Level 2

Re: Wrapping text around an image

I'm having the same problem. I tried floating the image to the left and then placing the text, but it doesn't seem to be working.