My web site has a contact form,
<!-- m --><a class="postlink" href="http://www.lukesplace.com/GBF/contact.php">http://www.lukesplace.com/GBF/contact.php</a><!-- m -->
I'm trying to get it to look exactly like,
<!-- m --><a class="postlink" href="http://www.lukesplace.com/Andy_Montanas/Contact/">http://www.lukesplace.com/Andy_Montanas/Contact/</a><!-- m -->
I tried to copy it, but there seems to be some hangup somewhere.within your own style.css, you've created a problem within the
content div ... when you apply styles to the paragraph (<p>) within the #content div, you are also modifying the <p> tags within #content div.
#content p {
display: block;
/* Comment out and this will solve the #contact id <p> problem
text-indent: 2em;
margin: 0;
padding: 10px;
*/
font-size: 14px;font-family:Verdana, Arial, Helvetica, sans-serif;
letter-spacing: 0;
color: #000;
line-height: 18px; }
Try adding a class for your body paragraphs such as .p1
.p1{
text-indent: 2em;
margin: 0;
padding: 10px;
}
Hope that makes sense.Nice, gratzie!
<!-- m --><a class="postlink" href="http://www.lukesplace.com/GBF/contact.php">http://www.lukesplace.com/GBF/contact.php</a><!-- m -->
I'm trying to get it to look exactly like,
<!-- m --><a class="postlink" href="http://www.lukesplace.com/Andy_Montanas/Contact/">http://www.lukesplace.com/Andy_Montanas/Contact/</a><!-- m -->
I tried to copy it, but there seems to be some hangup somewhere.within your own style.css, you've created a problem within the
content div ... when you apply styles to the paragraph (<p>) within the #content div, you are also modifying the <p> tags within #content div.
#content p {
display: block;
/* Comment out and this will solve the #contact id <p> problem
text-indent: 2em;
margin: 0;
padding: 10px;
*/
font-size: 14px;font-family:Verdana, Arial, Helvetica, sans-serif;
letter-spacing: 0;
color: #000;
line-height: 18px; }
Try adding a class for your body paragraphs such as .p1
.p1{
text-indent: 2em;
margin: 0;
padding: 10px;
}
Hope that makes sense.Nice, gratzie!