There are too many tabs above my nodes (Display, Edit, but also the tabs that modules contribute) and they disappear behind the width of my central column. How can I make them wrap?

Many thanks

TR

Comments

efolia’s picture

If your problem only occurs for administrators, use a different administration theme (admin/settings/admin). Otherwise, you'll have to either change the theme altogether or edit the CSS that renders the nodes to allow wrapping in your current theme.

Cheers :-)
efolia

theorichel’s picture

t was in the system.css and a lot easier than I expected.
Thanks

TR

halstead’s picture

I had to add this in my style.css. It should work in any file that loads after system.

ul.tabs {
  white-space: normal;
}
hokuspokus’s picture

Excellent, I was having this problem and this was a quick fix. Thanks a bunch!

Carlos Miranda Levy’s picture

To prevent the words within the tabs to wrap, just do nowrap for the li element:

ul.tabs.primary,
ul.tabs.secondary {
white-space: normal;
}

ul.tabs.primary li,
ul.tabs.secondary li {
white-space: nowrap;
}

dzigman’s picture

Worked for me with Arthemia 6.x-1.1