Removing Extra List Breaks

liunx

Guest
Hi! How Do I remove the paragraph break between the OL and LI tags? Here is an example:<br />
<br />
Benefits are:<OL><br />
<LI>Fast<br />
<LI>Cheap<br />
<LI>Great<br />
</OL><br />
<br />
Between the <OL> and the First <LI> is a paragraph break that I want to remove. Thanks in advance!<!--content-->Simon,<br />
Put the following in your <head> tag:<br />
<br />
<style type="text/css"><br />
ol {<br />
margin-top: 0;<br />
}<br />
</style><br />
<br />
Should fix your problem :)<!--content-->I'll give it a shot this evening and let you know how it works out!<!--content-->How come this solution works in IE, but not Netscape?<!--content-->Well, Netscape really is not good at displaying CSS. Netscape 7 might display it, but I have never used it so I don't know :rolleyes:<!--content-->
 
Back
Top