The Layout page uses the wrong units for Page-max-width and Page-min-width. If the layout type is set to Elastic, Page-max-width and Page-min-width display "%" units instead of "em" units. If Liquid layout is used, "em" units are displayed.
Fix
----
Lines 105 and 106 should be:
105: if ($themebuilder_theme_layout == 'em') {
106: $themebuilder_theme_layout_text = t('Elastic');
and lines 131 and 133 should be:
131: else if ($themebuilder_theme_layout == '%') {
133: $themebuilder_theme_layout_text = t('Liquid');
in themebuilder/includes/data.inc
Comments
Comment #1
DrewMathers commentedHere is the above Fix in the form of a patch.
Comment #2
CZ commentedThanks, fixed.
Comment #3
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.