I'm using blueprint to do a complex form layout that involves jquery-ui tabs, but when I try to use the blueprint span-x divs within the jquery-ui tabs, the formatting gets all screwy....
<div id="tabs">
<ul>
<li><a href="#blahblah"><span>blah blah</span></a></li>
<li><a href="#blahblahblah"><span>blah blah blah</span></a></li>
</ul>
<div id="blahblah">
<div "class="span-8 last">
<dl>
<!--some input boxes-->
</dl>
</div>
</div>
</div>
If i take the "class-span-8 last" out, the page works as expected. Any help / ideas would be much appreciated!