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.
The forum of the forums
5 posters

    How to change the shape of the profile photo?

    Skia Drum
    Skia Drum
    Forumember


    Posts : 52
    Reputation : 1
    Language : English

    In progress How to change the shape of the profile photo?

    Post by Skia Drum 24/8/2016, 08:20

    Hi! How can I change the shape of the profile photo just like here in the forum (circle one)?

    How to change the shape of the profile photo? Capture

    And how can I remove those extra description and spaces that are marked X?
    SLGray
    SLGray
    Administrator
    Administrator


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

    In progress Re: How to change the shape of the profile photo?

    Post by SLGray 24/8/2016, 11:26

    Is your forum's version #punBB ?



    How to change the shape of the profile photo? Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Skia Drum
    Skia Drum
    Forumember


    Posts : 52
    Reputation : 1
    Language : English

    In progress Re: How to change the shape of the profile photo?

    Post by Skia Drum 24/8/2016, 11:30

    SLGray wrote:Is your forum's version #punBB ?

    my forum's version is phbb3
    SLGray
    SLGray
    Administrator
    Administrator


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

    In progress Re: How to change the shape of the profile photo?

    Post by SLGray 24/8/2016, 11:35

    CSS Stylesheet:
    Code:
    .postprofile dt img {
      border-radius: 100px;
    }



    How to change the shape of the profile photo? Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Skia Drum
    Skia Drum
    Forumember


    Posts : 52
    Reputation : 1
    Language : English

    In progress Re: How to change the shape of the profile photo?

    Post by Skia Drum 24/8/2016, 12:06

    SLGray wrote:CSS Stylesheet:
    Code:
    .postprofile dt img {
      border-radius: 100px;
    }

    Thanks! How about the spacing? to remove the extra spaces?
    and still having this problem when I implemented your code above, some of the photos are ok, but some does not.

    How to change the shape of the profile photo? Capture
    Skia Drum
    Skia Drum
    Forumember


    Posts : 52
    Reputation : 1
    Language : English

    In progress Re: How to change the shape of the profile photo?

    Post by Skia Drum 25/8/2016, 11:20

    *bump* *bump* *bump*
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    In progress Re: How to change the shape of the profile photo?

    Post by TheCrow 25/8/2016, 12:54

    Hello @Skia Drum,

    for the circled avatars try this code:
    Code:
    .postprofile dt img {
      border-radius: 100%;
      width: 150px;
      height: 150px
    }

    As for the spaces, which ones are you referring to? The ones under the rank or you want to add some more space around the avatar? Think



    How to change the shape of the profile photo? Thecro10
     Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Skia Drum
    Skia Drum
    Forumember


    Posts : 52
    Reputation : 1
    Language : English

    In progress Re: How to change the shape of the profile photo?

    Post by Skia Drum 25/8/2016, 15:47

    Luffy wrote:Hello @Skia Drum,

    for the circled avatars try this code:
    Code:
    .postprofile dt img {
      border-radius: 100%;
      width: 150px;
      height: 150px
    }

    As for the spaces, which ones are you referring to? The ones under the rank or you want to add some more space around the avatar? Think

    How to change the shape of the profile photo? Untitl10

    I want to remove the excess space that is marked red.
    Ace 1
    Ace 1
    Helper
    Helper


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

    In progress Re: How to change the shape of the profile photo?

    Post by Ace 1 25/8/2016, 16:01

    @shakib al hasan You mean every avatar on your forum? phpbb3 right?
    Skia Drum
    Skia Drum
    Forumember


    Posts : 52
    Reputation : 1
    Language : English

    In progress Re: How to change the shape of the profile photo?

    Post by Skia Drum 25/8/2016, 16:13

    why is the other question is answered while on my thread -_-
    Ace 1
    Ace 1
    Helper
    Helper


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

    In progress Re: How to change the shape of the profile photo?

    Post by Ace 1 25/8/2016, 16:13

    @shakib al hasan The mods are gonna get on you cuz you didn't make a new topic but here's the CSS for it

    Code:
    #fa_popup_content > div.post .postprofile dt img, #main-content > div.post .postprofile dt img, #userAvatar img, .avatar img, .lastpost-avatar img, .mod-login-avatar dt > img, td.avatar-mini img { border-radius: 100px; }
    Ape
    Ape
    Administrator
    Administrator


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

    In progress Re: How to change the shape of the profile photo?

    Post by Ape 25/8/2016, 16:55

    @shakib al hasan
    Please don't Hijack other members threads.
    Member BANNED
    He know's the rules.

    Please read our forum rules: ESF General Rules


    Last edited by APE on 25/8/2016, 17:12; edited 1 time in total



    How to change the shape of the profile photo? Left1212How to change the shape of the profile photo? Center11How to change the shape of the profile photo? Right112
    How to change the shape of the profile photo? Ape_b110
    How to change the shape of the profile photo? Ape1010
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    In progress Re: How to change the shape of the profile photo?

    Post by TheCrow 25/8/2016, 17:00

    @Skia Drum try adding this in your CSS:
    Code:
    .postprofile dd:nth-child(4) { margin-top: -25px }



    How to change the shape of the profile photo? Thecro10
     Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Skia Drum
    Skia Drum
    Forumember


    Posts : 52
    Reputation : 1
    Language : English

    In progress Re: How to change the shape of the profile photo?

    Post by Skia Drum 25/8/2016, 19:45

    This fixed my problem,

    Luffy wrote:Hello @Skia Drum,

    for the circled avatars try this code:
    Code:
    .postprofile dt img {
      border-radius: 100%;
      width: 150px;
      height: 150px
    }

    As for the spaces, which ones are you referring to? The ones under the rank or you want to add some more space around the avatar? Think

    However, I'm still having issues with the profile button, it turned out like this also.

    How to change the shape of the profile photo? Captur12
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    In progress Re: How to change the shape of the profile photo?

    Post by TheCrow 25/8/2016, 22:37

    Hello @Skia Drum,

    Try changing this:
    Code:
    .postprofile dt img
    into this :
    Code:
    .postprofile dl dt img


    I believe that should fix your problem.



    How to change the shape of the profile photo? Thecro10
     Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Skia Drum
    Skia Drum
    Forumember


    Posts : 52
    Reputation : 1
    Language : English

    In progress Re: How to change the shape of the profile photo?

    Post by Skia Drum 25/8/2016, 23:29

    Luffy wrote:Hello @Skia Drum,

    Try changing this:
    Code:
    .postprofile dt img
    into this :
    Code:
    .postprofile dl dt img


    I believe that should fix your problem.

    that fixed it Very Happy but the profile image turned square again How to change the shape of the profile photo? Mouais
    SLGray
    SLGray
    Administrator
    Administrator


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

    In progress Re: How to change the shape of the profile photo?

    Post by SLGray 25/8/2016, 23:56

    Add the CSS to the top of the stylesheet.



    How to change the shape of the profile photo? Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Skia Drum
    Skia Drum
    Forumember


    Posts : 52
    Reputation : 1
    Language : English

    In progress Re: How to change the shape of the profile photo?

    Post by Skia Drum 26/8/2016, 11:38

    SLGray wrote:Add the CSS to the top of the stylesheet.

    what css code?
    Ape
    Ape
    Administrator
    Administrator


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

    In progress Re: How to change the shape of the profile photo?

    Post by Ape 26/8/2016, 19:21

    add this one to the top of your CSS files


    Code:
    .postprofile dt img {  border-radius: 100%;  width: 150px;  height: 150px}



    How to change the shape of the profile photo? Left1212How to change the shape of the profile photo? Center11How to change the shape of the profile photo? Right112
    How to change the shape of the profile photo? Ape_b110
    How to change the shape of the profile photo? Ape1010
    Skia Drum
    Skia Drum
    Forumember


    Posts : 52
    Reputation : 1
    Language : English

    In progress Re: How to change the shape of the profile photo?

    Post by Skia Drum 26/8/2016, 19:26

    APE wrote:add this one to the top of your CSS files


    Code:
    .postprofile dt img {  border-radius: 100%;  width: 150px;  height: 150px}

    the profile button turned out circle again How to change the shape of the profile photo? Mouais

      Current date/time is 23/9/2024, 11:21