By theorichel on
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
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
different admin theme
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
ThanksI
t was in the system.css and a lot easier than I expected.
Thanks
TR
Just in case it helps
I had to add this in my style.css. It should work in any file that loads after system.
Excellent, I was having this
Excellent, I was having this problem and this was a quick fix. Thanks a bunch!
Proper wrap of tabs and not within tabs
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;
}
Yes ...! Thank you
Worked for me with Arthemia 6.x-1.1