Wednesday 01 October 2003 8:53:16 am
You can solve this overriding the default behaviour of the css tags that apply to the <p> tag. The standard core.css declares <p> as having this formatting:
p
{
padding-top: 0.5ex;
padding-bottom: 0.5ex;
margin: 0px; } This is where your spaces are coming from. <p> has padding above and below it, as you would expect from a paragraph. You can override this in your own stylesheet with settings but this would apply to every <p>. You may want to localise it by:
div p, td p
{
padding-top: 0.5ex;
padding-bottom: 0.5ex;
margin: 0px; } or something similar. look in the html source for the html tags around your problematic <p>. This is a bit technical but i hope you see what im getting at here. paul
|