When using this theme on a page with both primary and secondary tabs, the tabs overlap each other making it very hard/impossible to use them properly:

I like the fact that the tabs are displayed to the right of the title section, but the problem occurs because they're placed there using position: absolute;.

I recommend instead creating a div around both the title and the tabs elements and use floats to align them. This will have the added benefit of allowing the div (with the rounded-corner background) to expand vertically if there are secondary tabs present.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

BWPanda’s picture

Status: Active » Needs review
FileSize
3.01 KB
9.77 KB

The attached patch fixes this issue using the solution described above.

BWPanda’s picture

For some reason the #title-tabs div was still being displayed even when there was no title or tabs. This updated patch fixes the issue.