how to fix text wrapping issue

  • Author
    Posts
  • #122890
    davidvs
    Power User

    Hi Zed,

    I am still not sure how to fix this text wrapping issue that only appears on mobile devices such as an iPhone.

    The web site example is on the home page: http://www.germanbunkers.com or https://germanbunkers.com/wn-159a-falke

    Thanks,

    David

    Website: www.germanbunkers.com

    #123419
    Zed
    Cryout Creations mastermind

    Hi,

    Wrapping happens dynamically depending on image sizes, text length and screen width. There is no catch-all solution to avoid having single words wrap around floating images, except perhaps to not use floating images at all (or disable floating on specific screen sizes).

    @media (max-width: 640px) { /* adjust the maximum screen width floating should be forced-disabled on */
        body .alignleft, body .alignright {
            float: none;
            margin-left: auto;
            margin-right: auto;
        }
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘how to fix text wrapping issue’ is closed to new replies.