XF 2.2 Change icon in "New posts" and "Post thread" buttons thanks

Just swap the Font Awesome content unicode in the code below and add to extra.less

Lightning Bolt:
CSS:
.button.button--icon--bolt>.button-text:before, a.button.button--icon--bolt>.button-text:before {
    content: "\f0e7";
}

Paper/Pen:
CSS:
.button.button--icon--write>.button-text:before, a.button.button--icon--write>.button-text:before {
    content: "\f044";
}
 
Top Bottom