• Resolved Kenner82

    (@kenner82)


    Our theme recently updated and caused some line break issues across the site, which have been temporarily solved by adding some CSS to the theme design options. If it makes a difference, the code was:

    body {
    word-break: break-word;
    }

    That solved the issues across the site, but our table at http://paddedtushstats.com/retailer-database/ seems to still be having some issues. Some of the columns are now displaying correctly, but columns 1 and 5 are still breaking throughout words.

    I don’t know ANYTHING about CSS, but I was just wondering if there was an equivalent of the above code that I could put in the Tablepress CSS section to keep the words from breaking? (Or if there is a way to use that exact same code with some modifications? I tried to make something up based on some of the examples from other threads, but nothing worked!) 🙂

    I appreciate any help that anyone can offer! 🙂

    https://wordpress.org/plugins/tablepress/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    Instead of using

    body {
      word-break: break-word;
    }

    you should probably use

    body {
      word-break: normal;
    }

    as that’s the default value in the browser.

    If you don’t want that on the entire site, just do it on tables with this “Custom CSS”:

    .tablepress {
      word-break: normal;
    }

    Regards,
    Tobias

    Thread Starter Kenner82

    (@kenner82)

    AH, YOU ARE MY NEW BEST FRIEND! 🙂

    Thank you SO MUCH for your help! Your customer service really can’t be beat 🙂

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! 🙂 Good to hear that this helped!

    Best wishes,
    Tobias

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Line Break Issues In Specific Columns’ is closed to new replies.