As I am unable to attach an image I will explain the best I can about the issue I am currently having.
I have a lot of tabs, which are not wrapping in the main content area. Instead the tabs keep continuing right and under the right blocks.
Similar to the following issue from another post on drupal.
http://drupal.org/files/issues/newsflashtabs.jpg
Any assistance in this matter would be greatly appreciated.
Thankyou
I think you should be able to solve this by adding the following to the bottom of your stylesheet:
ul.tabs.primary,
ul.tabs.secondary {
white-space: normal;
}
ul.tabs.primary li,
ul.tabs.secondary li {
white-space: nowrap;
}
Thankyou very much for a very prompt response.
That did work, might I suggest that this be committed to the theme also.
ul.tabs.primary,
ul.tabs.secondary {
white-space: normal;
line-height:40px;
}
ul.tabs.primary li,
ul.tabs.secondary li {
white-space: nowrap;
}
Had to add the line-height as well as they were overlapping each other.
Everything looks good now.
By the way, great theme.




