• The picture box for your avatar in profiles overlays the new admin color scheme options. While it was kinda neat having it at the top, I found it broke a few things, like front-end profile plugins/layouts. Could you remove the absolute positioning and just leave the picture box at the bottom where it naturally winds up?

    Rick

    http://wordpress.org/plugins/user-avatar/

Viewing 4 replies - 1 through 4 (of 4 total)
  • I have the same problem, not only me all wp 3.8 users have same problem, Any one Please Help us.

    @ Rick Radko

    I solved this problem, follow me to solve yourself,

    Go to Plugins Page, Click Edit on useravatar, Select user-avatar/css/user-avatar.css, go to #user-avatar-display in css

    change top:100px; to top:350px; and update

    Problem Solved 🙂

    Thread Starter Rick Radko

    (@r3df)

    @jahnavi27 It’s easy enough to fix in a number of ways, I just want to get it fixed in the plugin so I don’t need to maintain a patch for it on all my sites.

    You shouldn’t mess with the plugin files to fix it though, it’s a bad practice. When the plugin updates you loose your changes. Create a site plugin or add it to a theme’s functions.php if you have a theme that does not update, or a child theme.

    I used this to get rid of floating it to the top and to make it match the new theme.

    /* admin css for user avatar */
    #user-avatar-display {
        background: #888888 !important;
        left: 0 !important;
        position: relative !important;
        right: 0 !important;
        top: 0 !important;
    }
    #user-avatar-display h3 {
        color: #FFFFFF !important;
        text-shadow: 0 1px 0 #000000 !important;
    }

    Great fix Rick. But if the plugin gets updated, it should include a fix for this, so Jahnavi27 should still be okay, right? 🙂

    Plus I’m starting to think this plugin, and it’s counterpart, People Lists, are not going to be updated, unless someone new takes over their development.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘WP 3.8 Issue: Picture location conflicts with new admin color scheme options’ is closed to new replies.