Viewing 2 replies - 1 through 2 (of 2 total)
  • I can’t explain the *why*, but you’ve run afoul of an unusual css bug in IE. It relates to the top and bottom portions of the padding property, in this case on your theme’s style.css blockquote declaration here:

    #content blockquote {
    margin:20px;
    padding:1px 10px 1px 25px;
    border-left: 2px solid #91B7EC;
    }

    You can correct for this by breaking out the padding property as follows:

    #content blockquote {
    margin:20px;
    padding-left: 25px;
    padding-right: 10px;
    border-left: 2px solid #91B7EC;
    }

    Thread Starter pinktruth

    (@pinktruth)

    Okay, well looks good to me!! THANK YOU!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Text starts to get cut off in IE’ is closed to new replies.