I believe lines 64 and 65 of template.php should read:

$vars['content_group_width'] = '" style="width:' . (100 - $sidebar_last_width) . '%';
$vars['sidebar_last_width'] = '" style="width:' . $sidebar_last_width . '%';

instead of...

$vars['content_group_width'] = '" style="width:' . (100 - $sidebar_last_width) . '%"';
$vars['sidebar_last_width'] = '" style="width:' . $sidebar_last_width . '%"';

Comments

mbacou’s picture

The current version fails W3C markup validation.

sociotech’s picture

Status: Active » Fixed

mbacou,

Good catch! Made the fix and it should be in tomorrow morning's dev snapshot of Fusion Core.

Thanks.

Status: Fixed » Closed (fixed)

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

dame’s picture

Version: 6.x-1.x-dev » 7.x-2.2
Issue summary: View changes

I have the same issue in the Drupal 7 branch.

function fusion_core_preprocess_page(&$vars) {
...
$vars[$group . '_width'] = '" style="width:' . $grid['fluid_adjustments'][$group] . '%"';

should be
$vars[$group . '_width'] = '" style="width:' . $grid['fluid_adjustments'][$group] . '%';

dame’s picture

Status: Closed (fixed) » Needs work

  • sociotech committed 85d924f on 8.x-1.x
    #587582 by sociotech: Fixed redundant closing quotation marks in...