It's your CSS, silly. It's bending over the HTML in the recip table and ass-fisting it. Always label your CSS elements with specific names so they don't interfere with commonly used HTML attributes.
Change this:
p {
padding: 0px 100px;
}
to:
p {
padding: 0px 10px;
}
or give p a class name, such as p.sexy:
p.sexy {
padding: 0px 10px;
}
__________________
Click here to purchase a bridge I'm selling.
|