Viewing 8 replies - 1 through 8 (of 8 total)
  • Your wp-layout.css currently defines only a left padding and margin:

    blockquote {
    margin-left: 1.5em;
    padding-left: 10px;
    }

    Edit the file and include something like margin-right: 1.5em; or whatever you had in mind.

    Thread Starter drewgood

    (@drewgood)

    I put margin-right: 50px; and still nothing happens.

    https://www.goodmanson.com/2004-11/28/a-wired-san-diego/

    you have a ton of validation errors. fixing those might solve some issues.

    I’ve been playing around a bit with your CSS…it’s got me stumped for the moment, but I’ll keep messing with it. ??

    Thread Starter drewgood

    (@drewgood)

    Any one else have a guess (I cleaned up most of the validation errors and the only ones left are from the

    • on the side menu. I can’t imagine that is the culprit.)

    Okay……..
    it’s widths

    #content p {
    font-size: 11px;
    }
    Get rid of the other stuff in that above.

    .storycontent {
    font-size: 11px;
    text-align: justify;
    width: 480px; <—————-change to that
    margin: 4px 0 0 0;
    }

    blockquote {
    margin: 0 50px;
    border-left: 1px solid #DDD;
    }

    For now have that.
    You had two different elements at a width of 500px, yet one was meant to sit in another, and then another element in the second could break through….

    plonk those in and we’ll go from there.

    Thread Starter drewgood

    (@drewgood)

    Thanks that did it!

    Raaaaaaah!!!!!

    ??

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Blockquote problem’ is closed to new replies.