XF 1.3 Changing reply button on quick_reply to font awesome icon

tonnyz

Member
Hi, how should I change the reply button on quick reply text to font awesome icon ?

I think I should start with this piece of code inside the quick_reply template, shouldn't I. But I just don't know how to modify it.

Code:
<input type="submit" class="button primary" value="{xen:phrase post_reply}" accesskey="s" />

thanks :)
 
Hi, how should I change the reply button on quick reply text to font awesome icon ?

I think I should start with this piece of code inside the quick_reply template, shouldn't I. But I just don't know how to modify it.

Code:
<input type="submit" class="button primary" value="{xen:phrase post_reply}" accesskey="s" />

thanks :)

solved it btw , sorry for this :D
 
Would be great if you share that kind of things.
I'll looking the same..

Sure ! Very glad if I can help you :LOL:

Just change the aforementioned code to this :

Code:
<input type="submit" class="awesome button primary" value="&#xf112;" accesskey="s" />

then add this piece of code to your EXTRA.css

Code:
.awesome {
    font-family: FontAwesome;
}

done :D
 
Top Bottom