I do not know how to explain this in details, so i have a image to show it. When the user have many itens to show in the profile, each one tab goes to the site of the previous, if you have many lists, they goes to the side, increasing the with of the page and add a scrollbar.

Is not possible, as the example in the image, make "Navegador de Arquivos" show bellow "Ver" and do not scroll the site to the side?

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Jeff Burnz’s picture

Ouch, that's not good and a regression also, I will prepare a fix.

komal.savla’s picture

Hi,

Add the following css in your .css file:

ul.primary {
  white-space:normal;
  float: left;
  width: 100%;
}

ul.primary li{
  float: left;
  margin: 1em 0 0 0;
}

Hope this helps.
Thanks,
Komal

Jeff Burnz’s picture

Yep, its the white-space normal that is the key. I'll get this into the next release.

Kebz’s picture

Issue summary: View changes
FileSize
12.56 KB

I have the same issue ... however, it is on a different theme. I did a search and came across this page.

I applied what was said on comment #2 (https://www.drupal.org/node/1242462#comment-4883830)

ul.primary {
white-space:normal;
float: left;
width: 100%;
}
ul.primary li{
float: left;
margin: 1em 0 0 0;
}

It is no longer going off the page... BUT, it is now stacked =\ ... lol...
User Profile tabs stacked
The user profile is core standard... correct? If so, then is this a core specific issue? Or a theme issue?

Any suggestions would be greatly appreciated.

Thanks!