OOTB 1.5.7b uses 4.5 font-awesome so the fa vs fas will work there.
And, as in most things, you can adjust size, alignment, and color in the CSS using
Code:
i.fa.fa-share.fa-flip-vertical.fa-lg{font-size:1.333333em;line-height:.75em;color:#000000;vertical-align:-15%;}
because using .fa-lg could adversely affect other fonts in the store and using the full call overrides the regular stylesheet without having to use !important.
I couldn't get fa-long-arrow-alt-right to work with OOTB 1.5.7b. Using fa-chevron-circle-right or fa-angle-right with an extra doesn't look too bad.
In the Layout Settings, use
Code:
 <i class="fa fa-chevron-circle-right fa-lg"></i>
or
Code:
<i class="fas fa-angle-right fa-lg"></i>
For the arrow in admin and use
Code:
i.fa.fa-chevron-circle-right.fa-lg{font-size:1.333333em;line-height:.75em;color:#000000;vertical-align:-15%;}
or
Code:
i.fa.fa-angle-right.fa-lg{font-size:1.333333em;line-height:.75em;color:#000000;vertical-align:-15%;}
to control the arrow in your CSS.
Adjust the sizes and colors to your choosing.
Last but not least, if you put both CSS calls in includes/templates/
your-template/css/stylesheet_zcustom.css, you'll always know where the change was made.

Bookmarks