Align Left not working
I have a page that is not aligning correctly.
Funnel Finders.com | Contact Us
When I have it open in DW it views correctly but the live page is wrong.
I have a page that is not aligning correctly.
Funnel Finders.com | Contact Us
When I have it open in DW it views correctly but the live page is wrong.
Thanks all! I did remove the P tag to get te text to look like it was supposed to. Trying to learn all this seems a little overwhelming at times....
CurtisWheat wrote:
Thanks all! I did remove the P tag to get te text to look like it was supposed to. Trying to learn all this seems a little overwhelming at times....
A well formed page should have html tags.
Why didn't you just remove text-align: center; from the p css selector. By default it is aligned left.
p {
line-height: 19px;
padding: 0px;
margin: 0px;
}
Then if you want to center a particular paragraph tag
.center_text {
text-align: center;
}
<p class="center_text">Some centered text</p>
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.