use the code you gave me.
<p class="pr_content">Hello World</p>
is fine
but in this line codes
<span class="pr_content"><p>Mortgage rate is increasing again.</p><p>How to beat it? Lock it with us!</p></span>
Now, the second paragraph
<p>How to beat it? Lock it with us!</p> is fine. with padding space 10.
but first paragraph
<p>Mortgage rate is increasing again.</p>
now is with extra padding space, it has 20 px padding space now.
I must miss something here.
my origianl css style sheet is like this, if I replace the .pr_content part with your code and I have the first paragraph with the extra padding space as I explained above.
body {
margin-left: 6px;
margin-top: 6px;
background-color: #cccccc;
}
h1 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: bold
color: #EDEDED;
padding-top: 10px;
padding-right: 10px;
padding-bottom: 0px;
padding-left: 10px;
}
.extBoxGrey {
border: 1px solid #989898;
}
.extBoxBlack{
border: 1px solid #636262;
background-color: #4C4C4C;
background-image: url(../siteImages/navSpacers/pageFooter.gif);
background-repeat: no-repeat;
background-position: left bottom;
}
.footer {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
line-height: 1.6em;
color: #B7BFC3;
padding-top: 0px;
padding-right: 5px;
padding-bottom: 0px;
padding-left: 5px;
}
a.footer:link{text-decoration: none; }
a.footer:visited{text-decoration: none;}
a.footer:hover{text-decoration: underline;}
a.footer:active{text-decoration: none;}
.google {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
line-height: 1.4em;
color: #666666;
padding-top: 10px;
padding-right: 10px;
padding-bottom: 10px;
padding-left: 10px;
}
.pr_content {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #EDEDED;
line-height: 1.5em;
padding-top: 0px;
padding-right: 10px;
padding-bottom: 0px;
padding-left: 10px;
}
a.pr_content:link{text-decoration: none; padding: 0px; color: #E5E529;}
a.pr_content:visited{text-decoration: none; padding: 0px; color: #E5E529;}
a.pr_content:hover{text-decoration: underline; padding: 0px; color: #FFDD00;}
a.pr_content:active{text-decoration: none; padding: 0px; color: #E5E529;}
Please help.