• I am having trouble with the first paragraph in pages like this one … but only in the most recent version of Firefox.

    The first paragraph doesn’t have a clean break to the next. In shows up great in Safari, IE, etc. Is this a know issue, I have tried tweaking the CSS quite a bit. So now, I am asking here. I appreciate your help and advice!

    Thanks,

    Tim

Viewing 2 replies - 1 through 2 (of 2 total)
  • Your first ‘paragraph’ doesn’t actually have any <p></p> tags but this is being compounded by your theme’s stylesheet which has removed the default margins from <p></p> tags. Try changing:

    p {
    color:#333333;
    line-height:18px;
    padding-bottom:10px;
    }

    to:

    p {
    color:#333333;
    line-height:18px;
    margin:1em auto;
    }

    in style.css

    Thread Starter timwiseman

    (@timwiseman)

    Perfect. Thanks!

    Tim

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Firefox Bug’ is closed to new replies.