I have created an eBay template and am having a problem formatting my list items. When I use simple code that does not CSS validate works, for example:
CODE:
<b><u>Title:</b></u> < br />
<li>one
<li>two
<li>three
RESULTS:
Title
one
two
three
But when I used CSS code that can be validated, the list items are indented, there is a space between the Title and the first item, and each item has a space. Since this is ebay I can only use inline CSS and it cannot impact the whole page. Also, I think that my <ul> and <li> tags may be inheriting some of the general page layout. I have tried using Div's and <span> without too much success. Below is my code and any help and suggestions would be appreciate.
CODE:
<b><u>Title:</b></u>
<ul style="margin=0;padding=0;">
<li>one
<li>two
<li>three
</ul>
RESULTS:
Title
. one
. two
. three
Thank You... Ronnie