Jquery UI tabs question

Out of context: Reply #2

  • Started
  • Last post
  • 9 Responses
  • lukus_W0

    <li class="viewAll"><a href="/en-us/blahblahblah">View All Solutions</a></li>

    ... is nested in the same <ul> element as the tabs that are used for tab-navigation. The jquery plugin automatically applies it's magic to list elements within the <ul> ... </ul>.

    So ... Move the link so it's no longer within the <ul>...</ul> and use CSS to style it and place it flush with the other elements. You'd also get rid of the <li> tags that immediately surround it, because they'd no longer be relevant.

    Also, don't forget; to be able to style the anchor properly - you'll need to apply 'display: block;' to it so that you can apply width, height etc.

View thread