You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

includdinhg more than 4 tabs Created Oct 13, 2009

This thread is solved

Views: 882     Replies: 1     Last reply Nov 8, 2009  
You must login first before you can use this feature

reinaldoperone

Posts: 4

Registered:
Oct 13, 2009

includdinhg more than 4 tabs

Posted: Oct 13, 2009

Good afternoon.

Im new to th jquery tools and i can see its a bit different from what im used to in traditional jquery. Im used to implement jquery ui tabs to my projects, but i ran into this library today and im thinking of changing all my tabs to these ones, neverthelessim trying to create more a form taht uses more than 4 tabs and something weird happens. From the fifth tab forward, it seems to be positioned one space vertically down and not horizontally like it should.

Does anybody know how to set my tabs absulutely horizontall.

PixeL
From Russia with love ;)

Posts: 4

Registered:
Nov 8, 2009

» includdinhg more than 4 tabs

Posted: Nov 8, 2009

Reply to: includdinhg more than 4 tabs, from reinaldoperone
I think your wrapper (ul, for exapmle) have no nessesary space for inside element location (li). If you use the list:

<ul>
  <li> .. </li>
  ... 
</ul> 
It only depends from css-properties of elements of your layout. Give a link to example, or code (html and css) of your layout block.

If your problem is only in IE(6,7)(it may be) and you use 'float' property with element, you need to use 'clear' for another side.

Ex:
ul li a{
display: block;
float: left;
clear: right; <-- This one (only for IE6,7 for other its not nessesary)
}

of course, much better - is posibility to look in your real block (html&css code).