Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1487622

    Hi everyone.
    Is there a tool or way to insert images into text so that it flows around it?

    https://img.savvyify.com/image/Text-around-images.yycoy

    #1487637

    Hey icarogioiosi,

    Thank you for the inquiry.

    You have to set the float property of the image to right or left. This will allow the surrounding text to flow around the image.

    Example:

    HTML:

    <img src="test.jpg" class="av-float-right" />Long text here..
    
    

    CSS:

    .av-float-right {
       float: right;
       margin: 10px;
       max-width: 242px; 
    }

    Let us know the result.

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.