Hi there,
I’m wondering if there’s a way I can wrap text around the grey column block listed in this blog post?
Right now, the only way to pull this off is to set up two columns and then make the text length to the left of the grey box match the length of the grey box.
I’d like for a way to be able to wrap around the box if possible.
Hi gerardbao!
Yes, there is way however, you might need to use some html codes and add some styling in Quick CSS. We can do that for you in that page, will you give us a temporary admin access? after doing it we will give you details on what was changed.
Regards,
Nikko
Sure thing. Login info posted in private
Hi,
We created a test page/
// http://bloomreach.com/2016/11/test-2/
You can find the css modification in the Quick CSS field.
.floatright {
width: 40%;
float: right;
padding: 25px;
}
Best regards,
Ismael
That helped! Now how can I make that responsive so it breaks down to full width on mobile?
Hi!
Just add this in Quick CSS:
@media only screen and (max-width:767px) {
.floatright {
width: 100%;
float: none;
}
}
Best regards,
Nikko