View Single Post
Old 2005-12-29, 03:34 PM   #6
Useless
Certified Nice Person
 
Useless's Avatar
 
Join Date: Oct 2003
Location: Dirty Undies, NY
Posts: 11,268
Send a message via ICQ to Useless
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.
Useless is offline   Reply With Quote