Change Google Plus Font-Awesome Class
Permalink
The default class for the Google Plus icon is fa-google-plus-square, does anyone know how to change this to fa-google-plus? At the moment I am changing it through jQuery like this...
I'm thinking there is probably better/easier ways to do this, any ideas?
$(document).ready(function() { $(".fa-google-plus-square").addClass("fa-google-plus").removeClass("fa-google-plus-square"); });
I'm thinking there is probably better/easier ways to do this, any ideas?
The class is added in this file:
https://github.com/concrete5/concrete5/blob/develop/web/concrete/src...
The class is the third element in the array with the fa- prefix removed.
I attempted to override the file without success. Directly changing the core file works as expected.
Maybe you will have better success overriding it. I am waiting for information on whether that file can be overridden or not.