XF 1.4 Badges Block in profile page

Try adding this to your EXTRA.css

Code:
.profilePage .mast .badgeBlocks .primaryContent.avatarHeap {
    border-width: medium 1px 1px;
    border-style: none solid solid;
    border-color: -moz-use-text-color #1B1B1B #1B1B1B;
    -moz-border-top-colors: none;
    -moz-border-right-colors: none;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    border-image: none;
}
 
Try adding this to your EXTRA.css

Code:
.profilePage .mast .badgeBlocks .primaryContent.avatarHeap {
    border-width: medium 1px 1px;
    border-style: none solid solid;
    border-color: -moz-use-text-color #1B1B1B #1B1B1B;
    -moz-border-top-colors: none;
    -moz-border-right-colors: none;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    border-image: none;
}
worked, thank you Gemma
 
Change it to this and it will add the block background colour too.

Code:
.profilePage .mast .badgeBlocks .primaryContent.avatarHeap {
    border-width: medium 1px 1px;
    border-style: none solid solid;
    border-color: -moz-use-text-color #1B1B1B #1B1B1B;
    -moz-border-top-colors: none;
    -moz-border-right-colors: none;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    border-image: none !important;
    background: #2D2D2D none repeat scroll 0% 0%;
    border-bottom-left-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}
 
Top Bottom