• Resolved dee61

    (@dee61)


    I am using the WordPress 2014 Theme and when I insert the text it breaks up. A sample of which is below
    aspects relating to the “world of maths” as this is be
    yond

    I am using the default page layout but this also happens with the full width layout. Notice how the word “beyond” is split into what looks like 2 words even though it is one word. This happens continually. Is there some sort of text format that I need to implement “without using a plugin” as this is a basic text input. I cannot give you a link to a page as I have just started on this project on my local Wampserver

Viewing 2 replies - 1 through 2 (of 2 total)
  • overwrite the CSS which is causing this, via a custom CSS plugin or child theme, by adding:

    .entry-content,
    .entry-summary,
    .page-content {
        -webkit-hyphens: none;
        -moz-hyphens:    none;
        -ms-hyphens:     none;
        hyphens:         none;
        word-wrap:       normal;
    }
    Thread Starter dee61

    (@dee61)

    OK. Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Text is breaking up in pages. WordPress 2014 Theme’ is closed to new replies.