Support » Fixing WordPress » My post's content area is out of shape

Viewing 2 replies - 1 through 2 (of 2 total)
  • The sample you show contains no spaces in the text. If you put in some spaces as in normal text, it will wrap nicely.

    If you must include a long string of text with no spaces, you can force a break by putting in a <br /> tag.

    If you want to hide the overflow, change style.css around line 571 to this:

    .entry-content, .entry-summary {
    clear:both;
    padding:12px 0 0;
    width:70%;
    overflow:hidden;
    }

    If you want to add scroll bars for long text strings, change ‘hidden’ to ‘auto’.

    Thread Starter mingswanfoo

    (@mingswanfoo)

    It works like a charm…

    Thanks mate…

    Cheers

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘My post's content area is out of shape’ is closed to new replies.