Profile images / Status image 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.
3 posters

    Profile images / Status image

    Wealh
    Wealh
    Forumember


    Posts : 69
    Reputation : 6
    Language : English

    In progress Profile images / Status image

    Post by Wealh October 26th 2015, 5:58 pm

    I want to center the profile images (Avatar, Rank & Rank image (not the username, nor the info)).

    I also want to move the status (online, offline) image next to the username, but how?

    http://boredom.iftopic.com/t1-enttry-37
    SLGray
    SLGray
    Administrator
    Administrator


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

    In progress Re: Profile images / Status image

    Post by SLGray October 26th 2015, 6:00 pm

    Add this to your CSS Stylesheet:
    Code:
    .pun .user-ident .user-basic-info {
        text-align: center;
    }



    Profile images / Status image Slgray10

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


    Posts : 69
    Reputation : 6
    Language : English

    In progress Re: Profile images / Status image

    Post by Wealh October 26th 2015, 6:02 pm

    SLGray wrote:Add this to your CSS Stylesheet:
    Code:
    .pun .user-ident .user-basic-info {
        text-align: center;
    }

    Thanks, what for the status image? Or can I move the status image to the center too (without moving the info)?

    Plus, I centered all but can I move everything to left (They will be centered, but at the left)
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    In progress Re: Profile images / Status image

    Post by Ange Tuteur October 26th 2015, 6:38 pm

    Hi @Wealh,

    You could try absolutely positioning the icon and then placing it on the top right ( or left ). CSS :
    Code:
    .post .i_icon_online {
      position:absolute;
      right:1px;
      top:1px;
    }

    You might need to add a bit of padding depending on where you put it. You should be able to apply that with :
    Code:
    .post .username {

    }
    Wealh
    Wealh
    Forumember


    Posts : 69
    Reputation : 6
    Language : English

    In progress Re: Profile images / Status image

    Post by Wealh October 26th 2015, 7:31 pm

    Ange Tuteur wrote:Hi @Wealh,

    You could try absolutely positioning the icon and then placing it on the top right ( or left ). CSS :
    Code:
    .post .i_icon_online {
      position:absolute;
      right:1px;
      top:1px;
    }

    You might need to add a bit of padding depending on where you put it. You should be able to apply that with :
    Code:
    .post .username {

    }

    Thanks, but how to move it in the middle (under the rank image) without moving the info (Posts, Join date)?
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    In progress Re: Profile images / Status image

    Post by Ange Tuteur October 26th 2015, 7:53 pm

    Try using this CSS for doing that :
    Code:
    .post .i_icon_online {
      display:block;
      margin:0 auto;
    }

    .post .i_icon_online + br { display:none; }

    It should center the online image without centering anything else.