Active
Project:
Black Piano
Version:
7.x-1.0-beta3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
16 Mar 2011 at 02:25 UTC
Updated:
4 Apr 2011 at 13:23 UTC
Jump to comment: Most recent file
I noticed some overlapping on the user pages as well.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | Screen shot 2011-03-23 at 4.42.57 PM.png | 514.53 KB | lloydpearsoniv |
| Screen shot 2011-03-15 at 9.21.13 PM.png | 523.18 KB | lloydpearsoniv |
Comments
Comment #1
webmatter commentedHi, I am afraid this is due to the many tabs you have in your user interface window. The drupal system.menu.css specifies for the tabs white-space: nowrap which means that there won't be a linebreak if the number of menu items exceeds the width of the content.
You could overwrite this by looking for ul.primary in your style.css. Here you would need to add
ul.primary {
...
white-space: normal;
}
Hope this helps.
Comment #2
lloydpearsoniv commentedThanks that was very helpful.
Now i just need to figure out how to space it vertically. Sorry I just dont know much CSS.
here is a screenshot of what I mean.
Comment #3
webmatter commentedHi, sorry for the late reply. You could try
#container ul.primary li {line-height: 200%;}