MyBB Community Forums

Full Version: Remove profile pic edges?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi everybody, I wanted to ask how can I remove the white edges on the profile pic?
Sorry if the wrong section, thank you.

[Image: QwDVZq.png]
Try changing: padding: 5px;

in your global.css > .post .post_author div.author_avatar img
Sorry, I mean I want to remove the white borders surrounding the profile picture.
You are looking for this in global.css

.post .post_author div.author_avatar img {
    padding: 5px;
    border: 1px solid #ddd;
    background: #fff;
}

Remove the border on there to this.

.post .post_author div.author_avatar img {
    padding: 5px;
   /* border: 1px solid #ddd;*/
    background: #fff;
}
(2016-11-18, 11:15 PM)Phillip™ Wrote: [ -> ]You are looking for this in global.css

.post .post_author div.author_avatar img {
    padding: 5px;
    border: 1px solid #ddd;
    background: #fff;
}

Remove the border on there to this.

.post .post_author div.author_avatar img {
    padding: 5px;
   /* border: 1px solid #ddd;*/
    background: #fff;
}

To add onto this, if you want to remove EVERYTHING (The border and White background). Simply remove the whole block
.post .post_author div.author_avatar img {
    
}
Either empty it like that or also delete the CSS.
Thank you guys, very helpful!