[PHPbb2] Link to an off-site Avatar resize help.
4 posters
Page 1 of 1
[PHPbb2] Link to an off-site Avatar resize help.
Hello,
I was able to change the max size for a Link to an off-site Avatar in posts on my forum.
But I need help on how to change the size in the following places:
On the avatar control Panel:
On the Login Widget:
On the avatar control panel in the administration user panel:
At calendar:
Thank You!!
I was able to change the max size for a Link to an off-site Avatar in posts on my forum.
But I need help on how to change the size in the following places:
On the avatar control Panel:
On the Login Widget:
On the avatar control panel in the administration user panel:
At calendar:
Thank You!!
Last edited by angel_of_night on June 23rd 2014, 11:07 am; edited 1 time in total
angel_of_night- Forumember
- Posts : 565
Reputation : 10
Language : portuguese
Re: [PHPbb2] Link to an off-site Avatar resize help.
Hi
#1
#2
#3 Administration panel - I don't think it's possible but you can try this, I'm not sure which affects which by this since you're using phpBB2:
#4 I give up on this one p_p. I can't catch it e.e"...
Regards,
Pizza Boi
#1
- Code:
form#register img {
max-width: 200px;
max-height: 200px;
}
#2
- Code:
#gallery_container img {
max-width: 200px;
max-height: 200px;
}
#3 Administration panel - I don't think it's possible but you can try this, I'm not sure which affects which by this since you're using phpBB2:
- Code:
table.forumline img {
max-width: 200px;
max-height: 200px;
}
#4 I give up on this one p_p. I can't catch it e.e"...
Regards,
Pizza Boi
Pizza Boi- Hyperactive
- Posts : 2016
Reputation : 160
Language : French
Location : Pizza Hut!
Re: [PHPbb2] Link to an off-site Avatar resize help.
Correct, you cannot modify the stylesheet or scripts found in the administration panel. You can only modify the front of the forum.
Re: [PHPbb2] Link to an off-site Avatar resize help.
Hi
Aww, my original post got deleted ... anyway, I think I found the answer:
AP < Display < Templates < Calendar < calendar_overview_profil < Find this part <
< Replace by < Save < Publish:
Add this in CSS < Save:
Regards,
Pizza Boi
Aww, my original post got deleted ... anyway, I think I found the answer:
AP < Display < Templates < Calendar < calendar_overview_profil < Find this part <
- Code:
<td class="row2">{AVATAR}</td>
< Replace by < Save < Publish:
- Code:
<td class="row2" id="bava">{AVATAR}</td>
Add this in CSS < Save:
- Code:
#bava {
max-width: 200px;
max-height: 200px;
}
Regards,
Pizza Boi
Pizza Boi- Hyperactive
- Posts : 2016
Reputation : 160
Language : French
Location : Pizza Hut!
Re: [PHPbb2] Link to an off-site Avatar resize help.
Thank you! So far it worked, but I got this problem in the avatar control panel:
BEFORE:
AFTER:
How to put the separation the way it was before?
Ah and I also forgot to ask about this!
How to also change the size at the vieweing profile?
Thank you boi
BEFORE:
AFTER:
How to put the separation the way it was before?
Ah and I also forgot to ask about this!
How to also change the size at the vieweing profile?
Thank you boi
angel_of_night- Forumember
- Posts : 565
Reputation : 10
Language : portuguese
Re: [PHPbb2] Link to an off-site Avatar resize help.
angel_of_night wrote:Thank you! So far it worked, but I got this problem in the avatar control panel:
BEFORE:
AFTER:
How to put the separation the way it was before?
Ah and I also forgot to ask about this!
How to also change the size at the vieweing profile?
Thank you boi
Hi
Your first question confuses me '-'.. can you explain clearer? And in my opinion, the current one looks cleaner .
For the second one, try this please:
- Code:
td.row1.gensmall img {
max-width: 200px;
max-height: 200px;
}
Regards,
Pizza Boi
Pizza Boi- Hyperactive
- Posts : 2016
Reputation : 160
Language : French
Location : Pizza Hut!
Re: [PHPbb2] Link to an off-site Avatar resize help.
The second worked, thank you.
The space of the description is too large in my opinion. Could I have it smaller?
The space of the description is too large in my opinion. Could I have it smaller?
angel_of_night- Forumember
- Posts : 565
Reputation : 10
Language : portuguese
Re: [PHPbb2] Link to an off-site Avatar resize help.
Hi
Hmm... actually it's corresponding to your forum's original width. But try digging in the templates and see if you can declare a name and have it re-size yourself, if not, I'll look into it. I'm on phone now so I can't check x_x", I'll have a go again at this for tomorrow .
Regards,
Pizza Boi
Hmm... actually it's corresponding to your forum's original width. But try digging in the templates and see if you can declare a name and have it re-size yourself, if not, I'll look into it. I'm on phone now so I can't check x_x", I'll have a go again at this for tomorrow .
Regards,
Pizza Boi
Pizza Boi- Hyperactive
- Posts : 2016
Reputation : 160
Language : French
Location : Pizza Hut!
angel_of_night- Forumember
- Posts : 565
Reputation : 10
Language : portuguese
Re: [PHPbb2] Link to an off-site Avatar resize help.
Hi
Well, this as a selector naturally works: .forumline .row1 ;however, there's a problem, it affects other areas. I checked in the templates where you can declare an individual name.
I even checked profile_body, sorry but I don't think this is possible. Maybe Ange can provide the last piece in the problem, lol.
Regards,
Pizza Boi
Well, this as a selector naturally works: .forumline .row1 ;however, there's a problem, it affects other areas. I checked in the templates where you can declare an individual name.
I even checked profile_body, sorry but I don't think this is possible. Maybe Ange can provide the last piece in the problem, lol.
Regards,
Pizza Boi
Pizza Boi- Hyperactive
- Posts : 2016
Reputation : 160
Language : French
Location : Pizza Hut!
Re: [PHPbb2] Link to an off-site Avatar resize help.
Yes, please if someone knows
angel_of_night- Forumember
- Posts : 565
Reputation : 10
Language : portuguese
angel_of_night- Forumember
- Posts : 565
Reputation : 10
Language : portuguese
Re: [PHPbb2] Link to an off-site Avatar resize help.
Also need help to resize avatar in the private messages.
angel_of_night- Forumember
- Posts : 565
Reputation : 10
Language : portuguese
Re: [PHPbb2] Link to an off-site Avatar resize help.
Hello,
Try this, go to your templates:
Post & private messages > prvmsgs_read_body > modify:
Find:
Replace it with:
prvmsgs_topic_review:
Find:
Replace it with:
Save and publish.
Then add this to your CSS:
Try this, go to your templates:
Post & private messages > prvmsgs_read_body > modify:
Find:
- Code:
{AVATAR_FROM}
Replace it with:
- Code:
<div class="res">{AVATAR_FROM}</div>
prvmsgs_topic_review:
Find:
- Code:
{postrow.POSTER_AVATAR}
Replace it with:
- Code:
<div class="res">{postrow.POSTER_AVATAR}</div>
Save and publish.
Then add this to your CSS:
- Code:
.res img {
max-width: #px;
max-height: #px;
}
Jophy- ForumGuru
- Posts : 17922
Reputation : 836
Language : English
Location : Somewhere
Re: [PHPbb2] Link to an off-site Avatar resize help.
Thank you! All solved
angel_of_night- Forumember
- Posts : 565
Reputation : 10
Language : portuguese
Jophy- ForumGuru
- Posts : 17922
Reputation : 836
Language : English
Location : Somewhere
Similar topics
» Link to an off-site Avatar
» Resize avatars for phpBB2, CSS code
» Changing Navigation-link names with Javascript question for phpbb2
» [HELP] AVATAR RESIZE
» Resize Avatar for my profile
» Resize avatars for phpBB2, CSS code
» Changing Navigation-link names with Javascript question for phpbb2
» [HELP] AVATAR RESIZE
» Resize Avatar for my profile
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum