Text Wrap - Divs? - Question | JoomShaper

Text Wrap - Divs?

PhoenixGB

PhoenixGB

SP Page Builder 1 week ago

HI

I want to wrap text around and object, prob a dynamic contant text box and or image. I have been using PB for years and for some reason just cant get it,

Anyone help me? TIA

0
2 Answers
R
Robert
Accepted Answer
1 week ago #218313

Block makes an element start on a new line and take up the full available width by default.

inline-block keeps the element inline (no new line) but still allows you to set width and height.

Flex makes the element behave like a block-level container and enables flexbox layout for its children, allowing advanced alignment and spacing control.

Inline-flex works like flex (flexbox for the children) but the element itself behaves inline instead of starting on a new line.

You can change the layouts better for responsive purpose. For example when you have a 4 column row it often looks bad on tablet. Using divs I change the colums to vertical sooner so it all shows good. dozens of ways to use the divs. Often also divs in divs to get the behavior I want.

Just play with it to see what it does, its quite powerfull. Also for backgrounds behind an element.

0
Ziaul Kabir
Ziaul Kabir
Accepted Answer
Support Agent 1 week ago #218342

Hi PhoenixGB,

Thanks for reaching out to us.

Robert’s explanation about block, inline-block, and flex is technically correct — those control layout behavior and responsiveness.

However, they won’t create true text wrapping. If your goal is to have text flow around an image or dynamic content box (magazine-style), you’ll need to use float: left; or float: right;, and make sure both elements are inside the same column.

Please, share your url with me. Let me check your rendered blocks.

Thanks

0