Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #715651

    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.

    #716875

    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

    #717540

    Sure thing. Login info posted in private

    #718629

    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

    #718958

    That helped! Now how can I make that responsive so it breaks down to full width on mobile?

    #718979

    Hi!

    Just add this in Quick CSS:

    @media only screen and (max-width:767px) {
      .floatright {
        width: 100%;
        float: none;
      }
    }

    Best regards,
    Nikko

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