The image floating on nodes is not working due to an improper CSS class. Line 222 of fusion-core-skins.css currently reads:

/* Float imagefield images left and add margin */
.fusion-float-imagefield-left .field-type-filefield,
.fusion-float-imagefield-left .image-insert,
.fusion-float-imagefield-left .imagecache {
  float: left; /* LTR */
  margin: 0 15px 15px 0; /* LTR */
}

For D7, it should read:

/* Float imagefield images left and add margin */
.fusion-float-imagefield-left .field-type-image,
.fusion-float-imagefield-left .image-insert {
  float: left; /* LTR */
  margin: 0 15px 15px 0; /* LTR */
}

The same fix would be required for the float image to the right CSS.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

michelhack’s picture

thanks this actually did it
you know how to get the "Content alignment" to work as well?

sheena_d’s picture

The attached patch should correct the issues with the image float styles.

@michelhack I do not see any issues with the content alignment skins. If you can provide more details to help us recreate the problem you are having, you should open a new issue.

sheena_d’s picture

Status: Active » Needs review
sheena_d’s picture

Status: Needs review » Fixed

This fix is included in Fusion 7.x-2.0-beta2

Status: Fixed » Closed (fixed)

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

  • Commit b155a82 on master, 7.x-2.x by sheena_d:
    Issue #1419956 by Poieo: updated image field classes for Drupal 7