I noticed some overlapping on the user pages as well.

Comments

webmatter’s picture

Hi, 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.

lloydpearsoniv’s picture

StatusFileSize
new514.53 KB

Thanks 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.

webmatter’s picture

Hi, sorry for the late reply. You could try
#container ul.primary li {line-height: 200%;}