Round avatar on log in widget
+2
Bigtuber
Veraa
6 posters
Page 1 of 1
Round avatar on log in widget
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.
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!
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.
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!
Re: Round avatar on log in widget
Hey @Veraa,
add the following code into your CSS:
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?
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?
Re: Round avatar on log in widget
@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?
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?
Re: Round avatar on log in widget
Try and add it to the top of the css codes if that don't work move it to the bottom of the codes.
Re: Round avatar on log in widget
Hello @Veraa,
Please add the below code in your CSS stylesheet:
if this code not work modify it like the code below:
The !important will force your CSS stylesheet by giving priority to your code.
The result will looks like this:
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.
The result will looks like this:
Re: Round avatar on log in widget
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:
Sadly it doesn't work, but I'll just be creative and leave the widget out or replace it, no biggie.
Thanks again c:
Re: Round avatar on log in widget
Add the codes and then clear your browser's cache and history.
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: Round avatar on log in widget
@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%; }
Similar topics
» User's avatar+stats as widget
» widget and avatar picture
» How can I add avatar in Recent Topics Widget?
» Names poping out the avatar in widget
» Login widget avatar size
» widget and avatar picture
» How can I add avatar in Recent Topics Widget?
» Names poping out the avatar in widget
» Login widget avatar size
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum