3

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!

BoltClock
  • 700,868
  • 160
  • 1,392
  • 1,356
Justin
  • 1,070
  • 2
  • 12
  • 16

2 Answers2

9

You might want to try giving each tab/div the blueprint "container" class.

Rob
  • 3,026
  • 4
  • 30
  • 32
0

I am guessing that it's probably because the div overflows. Start with span-1 and work your way up.

aleemb
  • 31,265
  • 19
  • 98
  • 114