Round avatar on log in widget Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
+2
Bigtuber
Veraa
6 posters

    Round avatar on log in widget

    Veraa
    Veraa
    New Member


    Female Posts : 4
    Reputation : 1
    Language : English/Dutch

    In progress Round avatar on log in widget

    Post by Veraa September 30th 2017, 4:24 pm

    Hi there,

    When I put the log in widget on my forum, it displays a normal sized avatar (200x280 in my case). I was wondering if you can customize that size. I'd really like it if it were a round avatar, and a little bit smaller, like on here.
    Round avatar on log in widget 396e7f1e-8e16-47b9-b282-cf2ea42fa5cd

    If anyone could help me customize my log in widget to get the avatar like the screen shot above, that would be great!

    Thanks in advance!
    Bigtuber
    Bigtuber
    Forumember


    Male Posts : 450
    Reputation : 19
    Language : German, English
    Location : Germany

    In progress Re: Round avatar on log in widget

    Post by Bigtuber October 1st 2017, 7:48 am

    Hey @Veraa,

    add the following code into your CSS:
    Code:
    .mod-login-avatar img {
        border: 3px solid #f00;
        border-radius: 100%;
        width: 120px;
        height: 120px;
        box-shadow: 0 0 10px #000;
    }

    That gives the image a red border (3px), rounds the avatar by 100%, sets the width and height of the avatar to 120x120px and last but not least there is a 10px black shadow around the avatar.
    You can easily change the values and colors.

    Does this help you? Smile
    Veraa
    Veraa
    New Member


    Female Posts : 4
    Reputation : 1
    Language : English/Dutch

    In progress Re: Round avatar on log in widget

    Post by Veraa October 1st 2017, 10:56 am

    @Bigtuber Thank you so much for your help!

    However, it doesn't seem to work :C
    I pasted it into my css but the widget still shows a full sized avatar.

    Is there a specific placement for this code in the CSS? Or another setting that might help get this code to work?
    Ape
    Ape
    Administrator
    Administrator


    Male Posts : 19316
    Reputation : 2005
    Language : fluent in dork / mumbojumbo & English haha

    In progress Re: Round avatar on log in widget

    Post by Ape October 1st 2017, 2:33 pm

    Try and add it to the top of the css codes if that don't work move it to the bottom of the codes.



    Round avatar on log in widget Left1212Round avatar on log in widget Center11Round avatar on log in widget Right112
    Round avatar on log in widget Ape_b110
    Round avatar on log in widget Ape1010
    Veraa
    Veraa
    New Member


    Female Posts : 4
    Reputation : 1
    Language : English/Dutch

    In progress Re: Round avatar on log in widget

    Post by Veraa October 1st 2017, 11:00 pm

    @Ape Thanks for the suggestion, unfortunately it still doesn't work.

    @Bigtuber I tried the code on another forum, and there it worked perfectly fine. I'm guessing there's something on my forum that's blocking this code? Could that be possible? They are both phpBB so that can't be the problem
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    In progress Re: Round avatar on log in widget

    Post by Van-Helsing October 2nd 2017, 1:54 am

    Hello @Veraa,
    Please add the below code in your CSS stylesheet:

    Code:
    b span.gen img {
        border-radius: 100%;
        width: 60px;
        height: 60px;
    }

    if this code not work modify it like the code below:

    Code:
    b span.gen img {
        border-radius: 100%!important;
        width: 60px!important;
        height: 60px!important;
    }

    The !important will force your CSS stylesheet by giving priority to your code. Wink

    The result will looks like this:

    Round avatar on log in widget AnuX5DwNSQeQJfC6WNu0fg
    Veraa
    Veraa
    New Member


    Female Posts : 4
    Reputation : 1
    Language : English/Dutch

    In progress Re: Round avatar on log in widget

    Post by Veraa October 2nd 2017, 6:33 pm

    Thanks for all of your help!

    Sadly it doesn't work, but I'll just be creative and leave the widget out or replace it, no biggie.
    Thanks again c:
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51497
    Reputation : 3523
    Language : English
    Location : United States

    In progress Re: Round avatar on log in widget

    Post by SLGray October 2nd 2017, 7:26 pm

    Add the codes and then clear your browser's cache and history.



    Round avatar on log in widget Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Ace 1
    Ace 1
    Helper
    Helper


    Male Posts : 843
    Reputation : 64
    Language : English - French?
    Location : Druid Hill Park

    In progress Re: Round avatar on log in widget

    Post by Ace 1 October 13th 2017, 7:36 pm

    @Veraa, I registered on your forum but couldn't find a log in widget, so I made my own phpbb2 forum. I think this css should work:

    Code:
    #gallery_container img[alt="avatar"] { border-radius: 50%; }