After the latest Chrome update (v50) and also in MS Edge the fieldset labels (legend) on the appearance settings page in Omega 3.1 are pushed down (see attachment).

Don't know if this is the right solution, but I made a small change to omega/alpha/css/alpha-theme-settings.css (line 15) that seems to resolve the issue.

div.vertical-tabs .vertical-tabs-panes .vertical-tabs-pane fieldset legend {
  display: block;
}
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

yazzybe created an issue. See original summary.

bensti’s picture

same problem!! your css code work fine! thx you

nathanlawsn’s picture

I also had the same problem. Thanks for the fix.

hermes_costell’s picture

+1 Thanks!

imshivani’s picture

FileSize
32.03 KB
14.71 KB
30.23 KB
9.79 KB

I installed the theme omega-3.1 and found the same issue on chrome/edge. I implemented the css fix you have given and its working totally fine now. I'm attaching the screenshots of before and after fixing the issue.
I noticed that the display: table property will also work fine:

div.vertical-tabs .vertical-tabs-panes .vertical-tabs-pane fieldset legend {
display: table;
}

Thanks