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

CommentFileSizeAuthor
#1 drupal_org_node_246220_1.patch803 bytesDrewMathers

Comments

DrewMathers’s picture

Status: Active » Needs review
StatusFileSize
new803 bytes

Here is the above Fix in the form of a patch.

CZ’s picture

Status: Needs review » Fixed

Thanks, fixed.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.