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.
Comments
Comment #1
michelhack commentedthanks this actually did it
you know how to get the "Content alignment" to work as well?
Comment #2
sheena_d commentedThe 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.
Comment #3
sheena_d commentedComment #4
sheena_d commentedThis fix is included in Fusion 7.x-2.0-beta2