• 1. Go to default.css of your active themes. Locate this line

    Before
    .avatar { float: left; margin: 0 10px 10px 0; border: 1px solid #CCC; padding: 2px; background: #FFF; }

    After
    .avatar { float: right; margin: 0 20px 20px 0; border: 1px solid #CCC; padding: 2px; background: #FFF; }

    2. Edit your sidebar-login.php from sidebar login plugins. Locate line 166 i think so its there. See below

    Before
    if (get_option(‘sidebar_login_avatar’)==’yes’) echo ‘<div class=”avatar_container”>’.get_avatar($user_ID, $size = ’38’).'</div>’;

    After
    if (get_option(‘sidebar_login_avatar’)==’yes’) echo ‘<div class=”avatar_container”>’.get_avatar($user_ID, $size = ’50’).'</div>’;

    Note: i only changed the position of the avatar and managed the size so that it will not missed up. Hope you like it!

    Enjoy!

    `

  • The topic ‘[Plugin: Sidebar Login] Tips on AVATAR overlaps’ is closed to new replies.