Okay
  Public Ticket #2942168
social icons not visible
Closed

Comments

  •  2
    steenvreter started the conversation

    I noticed that some social icons are not visible, but they are displayed on the screen and the link is working well

    In the header bar iI have 2 icons: linkedin and instagram: The linkedin logo is only showing on mouse over, and not like it should.

    I see the problems in the footer location and on the off-canvas menu.

    The icons missing are:

    - Linkedin

    -Facebook

  •  2,967
    Andrew replied

    Hi again,

    Try the following CSS.

    .fa.fa-linkedin:before {
        content: "\e605";
    }
    .fa.fa-facebook:before {
        content: "\f09a";
    }
    

    Regards,

  •  2
    steenvreter replied

    Thanks for the reply, Andrew. 

    I pasted this in the CCS section, but it dint change anything.  Any other suggestions?

  •  2,967
    Andrew replied

    Hi again,

    Try this instead.

    .fa.fa-linkedin:before {
        content: "\e605" !important;
    }
    .fa.fa-facebook:before {
        content: "\f09a" !important;
    }
    

    Regards,

  •  2
    steenvreter replied

    Thanks. that fixed it!