Profile images / Status image
3 posters
Page 1 of 1
Profile images / Status image
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
I also want to move the status (online, offline) image next to the username, but how?
http://boredom.iftopic.com/t1-enttry-37
Re: Profile images / Status image
Add this to your CSS Stylesheet:
- Code:
.pun .user-ident .user-basic-info {
text-align: center;
}
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Profile images / Status image
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)
Re: Profile images / Status image
Hi @Wealh,
You could try absolutely positioning the icon and then placing it on the top right ( or left ). CSS :
You might need to add a bit of padding depending on where you put it. You should be able to apply that with :
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 {
}
Re: Profile images / Status image
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)?
Re: Profile images / Status image
Try using this CSS for doing that :
It should center the online image without centering anything else.
- 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.
Similar topics
» Profile Status Text
» Status profile field above avatar
» Indicate the online status of a user in a profile field, Not Working
» How do I add a "latest-status update" or "profile feed" widget?
» phpbb3 & invision : Indicate the online status of a user in a profile field
» Status profile field above avatar
» Indicate the online status of a user in a profile field, Not Working
» How do I add a "latest-status update" or "profile feed" widget?
» phpbb3 & invision : Indicate the online status of a user in a profile field
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum