Okay
  Public Ticket #1916357
Social Media Icons In footer
Closed

Comments

  • racerx37335 started the conversation

    I would like to change the image of one of the "built-in" Social Media icons to a custom image so that I can use link to a srvice that is not "built-in". Replacing one of the built-ins like Github would be ideal. What size should it be, and is this possible? I did some searching and saw some previous ways on earlier releases that do not seem to work now.

  •  8,996
    Tahir replied

    Hey Again,

    The Icons are font files and not images. Which service do you want to change it to ? . Please see: https://themenectar.ticksy.com//ticket/1116031/ . 

    Best


    ThemeNectar Support Team 

  •   racerx37335 replied privately
  •  8,996
    Tahir replied

    Hey Again, Hope you had a Great Weekend, 

    Please setup the a icon you want to replace and provide the image url of the icon so i can write up custom css for it. 

    Best


    ThemeNectar Support Team 

  •   racerx37335 replied privately
  •  8,996
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    i.fa.fa-github-alt {
        background: url(http://www.teamtexass.com/wp-content/uploads/2019/03/ONLYFANS-298x300.png);
    }
    i.fa.fa-github-alt:before,i.fa.fa-github-alt:after {
        content: '';
    }

    Thanks


    ThemeNectar Support Team 

  •   racerx37335 replied privately
  •  8,996
    Tahir replied

    Remove the css earlier provided and use this instead.

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    #header-outer #social-in-menu .fa-github-alt:after, .material #slide-out-widget-area.slide-out-from-right .fa-github-alt:after {
        content: "";
    }
    #header-outer #social-in-menu i.fa.fa-github-alt:before {
        background: url(http://www.teamtexass.com/wp-content/uploads/2019/03/ONLYFANS-1-e1551844429431.png);
        background-repeat: no-repeat;
        background-position: center;
        width: 30px;
        height: 25px;
        display: block;
        position: relative;
        background-size: 17px;
    }
    /* Hover state */
    #header-outer #social-in-menu i.fa.fa-github-alt:after {
        background: url(http://www.teamtexass.com/wp-content/uploads/2019/03/ONLYFANS-1-e1551844429431.png);
        background-repeat: no-repeat;
        background-position: center;
        width: 30px;
        height: 25px;
        display: block;
        background-size: 17px;
    }
    /* Footer icon */
    #footer-outer i.fa.fa-github-alt {
        background: url(http://www.teamtexass.com/wp-content/uploads/2019/03/ONLYFANS-1-e1551844429431.png);
        background-repeat: no-repeat;
        background-position: center;
    }
    #footer-outer i.fa.fa-github-alt:hover {
        background: url(http://www.teamtexass.com/wp-content/uploads/2019/03/ONLYFANS-1-e1551844429431.png);
        background-repeat: no-repeat;
        background-position: center;
    }

    Thanks


    ThemeNectar Support Team 

  •   racerx37335 replied privately