anyone else have this happen?
in edit user, the radio button and avatar is below the picture box and covering the theme configuration title and box.
the "Or simply select an icon:" text is in the picture box.

using drupal version 5.1.
screen shot attached.

CommentFileSizeAuthor
avatar.jpg14.13 KBdsp1

Comments

dsp1’s picture

so I changed the CSS float to none and that fixes it. why is the css for the module set to float: left?

niclasforsen’s picture

Very good find! I also wondered about this.

Another thing I changed was the "Or simply select an icon" part. If you have more than one profile page that the user can edit, for instance if you have gmap or have added other data fields to the profile, the "Or simply select an icon" would appear on every profilepage the user edits. What I did was a small "hack" to the avatar_selection.module (my two lines in bold);

if ($form['picture']){
$form['picture']['select_avatar'] = array(
'#type' => 'radios',
'#title' => t('Or simply select an icon'),
'#options' => $selects,
'#default_value' => $user_form['_account']['#value']->picture,
);
}

At least for me this removed the avatar selection block from the other profile pages than the one it should appear on.

Niclas

niclasforsen’s picture

Oh silly me, didn't see that the profile thing already had been fixed :I

stella’s picture

Assigned: Unassigned » stella
Status: Active » Fixed

patch added to CVS. thanks.

stella’s picture

Status: Fixed » Closed (fixed)

released in 5.x-1.2-2