Welcome to vbmods.rocks! Get FREE and paid vBulletin mods, plugins, addons, API extensions, custom modules, custom BB Codes, vBCloud mods, CORE hacks, JS hacks, custom coding by Glenn, an ex-vBulletin Developer. You must register before you can post, download the files or copy the code from the free plugins.
Had a member join today and his/her avatar came out like this. Is this a product of the avatar being too small? I'm sure force stretching the avi isn't ideal, but is it doable in times like these?
Where does the thin white border you have around these round avatars derive from?
I've achieved round avatars, and I've made them larger, but I can't seem to give them a border.
If I alter ...
Code:
.b-avatar--thread {
border: 0;
}
… to ...
Code:
.b-avatar--thread {
border: 1;
}
… I get a 1px square border around my round avatar.
The square border is by default coming from the avatar anchor link which has b-avatar--thread CSS class. If you want to get rid of it, then override it with this code.
Code:
.b-avatar--thread {
border: 0;
}
If you want to put border around the avatar img, then add:
Code:
.b-avatar--thread img {
border: 1px solid #fff;
}
As per your question about css_additional.css, it is a template and by default, templates are stored in the database. So you will not see it in the file system. But you could also switch the templates to store from database into file system. But even then, you should not edit it directly as it will get re-generated every time you update the template in AdminCP.
That's not a bug. That happens when an avatar is not square. If you force it to be square using CSS, the avatar will be skewed or stretched and may not look good.
Thank you! It is working on my website in the default style. However, it is not working on a customized style (Metro). Do you think it is an error or bug in the customised style? www.interpretersweb.com/forums
I finally created a mod that allows you to add an icon to each post with options for sharing on other platforms. I honestly thought it was absurd that...
Comment