Hi Jeff, not sure if this a bug or something I am doing wrong but it seems to relate to this issue: https://drupal.org/node/1657470

Attached is a screenshot showing the stacking of a 25-25-50 panel layout. The first region seems to be 100% instead of 25%, the second is 25% and third is 75%.

My stack for this layout is set at 50% 50% 100%. Screenshots attached.

Any ideas on how to fix?

Many thanks.

CommentFileSizeAuthor
settings.jpg212.82 KBT.Mardi
25-25-50-stack.jpg144.19 KBT.Mardi
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

T.Mardi’s picture

I changed the following in the info file

      'three-25-25-50-stack-top' => array(
        'css' => array(
          'fdw' => array('.three-25-25-50 > .region-three-25-25-50-first' => 'float:none;display:block;width:100%;clear:both'),
          '25' => array('.three-25-25-50 > div.region-three-25-25-50-second' => 'width:25%'),
          '75' => array('.three-25-25-50 > div.region-three-25-25-50-third' => 'width:75%'),
        ),
      ),

To

      'three-25-25-50-stack-top' => array(
        'css' => array(
          '50' => array('.three-25-25-50 > .region' => 'width:50%'),
          'fdw' => array('.three-25-25-50 > .region-three-25-25-50-third' => 'float:none;display:block;width:100%;clear:both'),
        ),
      ),

And it seems to have worked. Not sure if this is a bug or not?