View Single Post
  #31  
Old 05-02-2007, 12:21 PM
 
Light Speed Light Speed is offline
 

X-Adept
  
Join Date: Mar 2003
Posts: 921
 

Default Re: X-Cart 4.1.7 released

If everybody would just use the <ul> tags properly then there is not an issue.

If you have a span do NOT put the ul or a p or a div or a table inside it.


BAD
<span> some text
<ul>
<li> some point
</ul>
more text
</span>


GOOD
<span> some text</span>
<ul>
<li> some point
</ul>
<span>more text</span>
Reply With Quote