Bullet Points On Form Cells

Hi,

I had a form which was working perfectly but I now have two bullet points where the form cells start which I cant rid of. The only thing I can think of is the arrangement with DIVs but I tried a number of variations. Any suggestions please?

<li id="li_1" >
		
<label class="description" for="element_2"  >Your Question:</label>
		
<div>
			
<textarea id="element_2" name="question" class="discussionforminput"  ><?php if(isset($_POST['question'])) ?></textarea>	
</div>
	</li>	
		
<li id="li_2" >
		
<label class="description" for="element_3">Comments:</label>
		
<div>
				
<textarea id="element_3" name="comments" class="discussionforminput" ><?php if(isset($_POST['comments'])) ?></textarea>
</div>
		
</li>
ul li {
 list-style: none;
}

Cheers dude.