Brad P Well-known member Aug 31, 2015 #1 evening chaps, How do i remove the black background on the badges? so it only shows the badge. Attachments Screenshot (27).webp 98.1 KB · Views: 29
DEZero Well-known member Aug 31, 2015 #2 .avatar img, .avatar .img, .avatarCropper{ background-color Upvote 0 Downvote
Brad P Well-known member Aug 31, 2015 #3 DEZero said: .avatar img, .avatar .img, .avatarCropper{ background-color Click to expand... does this go in extra css? Upvote 0 Downvote
DEZero said: .avatar img, .avatar .img, .avatarCropper{ background-color Click to expand... does this go in extra css?
DEZero Well-known member Aug 31, 2015 #5 Brad P said: does this go in extra css? Click to expand... yeah, if it doesn't work add !important to it. Upvote 0 Downvote
Brad P said: does this go in extra css? Click to expand... yeah, if it doesn't work add !important to it.
Brad P Well-known member Aug 31, 2015 #7 .avatar img, .avatar .img, .avatarCropper { background-color !important; } thats how ive tried it? Upvote 0 Downvote
P Paul B XenForo moderator Staff member Sep 1, 2015 #8 You haven't actually defined the colour - the CSS is invalid. Code: .avatar img, .avatar .img, .avatarCropper { background-color: transparent; } Upvote 0 Downvote
You haven't actually defined the colour - the CSS is invalid. Code: .avatar img, .avatar .img, .avatarCropper { background-color: transparent; }
Brad P Well-known member Sep 1, 2015 #9 Brogan said: You haven't actually defined the colour - the CSS is invalid. Code: .avatar img, .avatar .img, .avatarCropper { background-color: transparent; } Click to expand... Thank you Brogan, can you tell me if its possible to remove the square line around the badge Upvote 0 Downvote
Brogan said: You haven't actually defined the colour - the CSS is invalid. Code: .avatar img, .avatar .img, .avatarCropper { background-color: transparent; } Click to expand... Thank you Brogan, can you tell me if its possible to remove the square line around the badge
P Paul B XenForo moderator Staff member Sep 1, 2015 #10 This set of guides should help with regards to customising: How To... This site will help you learn how to use CSS: CSS Tutorial Upvote 0 Downvote
This set of guides should help with regards to customising: How To... This site will help you learn how to use CSS: CSS Tutorial
DEZero Well-known member Sep 1, 2015 #11 Do Border: 0px !important; In that same code. This will also remove it from avatars however, unless there us a custom line for the badges you can check. Upvote 0 Downvote
Do Border: 0px !important; In that same code. This will also remove it from avatars however, unless there us a custom line for the badges you can check.