Line Height and line breaks word wraps

  • Unknown's avatar

    hi, i`ve already read much about changing this with css but nothing works:
    i start with
    .post-ID {
    line height does not change anything

    so what shall i do????
    I`d be greatfull for every response

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi, @romanangerer, could you explain what you want to accomplish? I think probably you are trying to align text and such with the images on your main page.

    For line height, I would suggest targeting using the ID instead of a class, such as the below.

    #post-40 .post-entry p {
        line-height: 2.5em;
    }

    On the breaks, I see you have added hyphenation with the following:

    body {
    -webkit-hyphens:auto;
    -moz-hyphens:auto;
    -ms-hyphens:auto;
    hyphens:auto;
    }

    Is that accomplishing what you wanted it to?

  • The topic ‘Line Height and line breaks word wraps’ is closed to new replies.