timwiseman
Member
Posted 2 years ago #
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
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
timwiseman
Member
Posted 2 years ago #