Options

Replace custom social icon with linked in icon

tatteberrytatteberry Registered Users Posts: 35 Big grins
edited June 23, 2016 in SmugMug Customization
site is http://www.creativespaceartists.com

Since SmugMug has dropped Linkedin from their social offers, I'm wanting to use the custom link for that. Any clue how to change the link icon to Linkedin?

Thanks
Todd Atteberry

The Green Man Design Studio

Comments

  • Options
    jerryrjerryr Registered Users Posts: 595 Major grins
    edited June 23, 2016
    Hi Todd - I usually set the social icons to medium size and branded then add the following css.
    The "image path" is the new icon - 40x40 png file.

    .sm-page-widget-social-links-link .sm-official .sm-fonticon
    {
    background-image: url("image path");
    height: 40px;
    width: 40px;
    background-repeat: no-repeat;
    background-position: top center;
    color: transparent;
    }

    .sm-fonticon-LinkSquare:before {
    display: none;
    }

    sm-fonticon-Link:before {
    display: none;
    }


    .sm-user-ui .sm-page-widget-social-links-link .sm-official .sm-fonticon:before {
    display: none;
    }
  • Options
    tatteberrytatteberry Registered Users Posts: 35 Big grins
    edited June 23, 2016
    Thanks!
    jerryr wrote: »
    Hi Todd - I usually set the social icons to medium size and branded then add the following css.
    The "image path" is the new icon - 40x40 png file.

    .sm-page-widget-social-links-link .sm-official .sm-fonticon
    {
    background-image: url("image path");
    height: 40px;
    width: 40px;
    background-repeat: no-repeat;
    background-position: top center;
    color: transparent;
    }

    .sm-fonticon-LinkSquare:before {
    display: none;
    }

    sm-fonticon-Link:before {
    display: none;
    }


    .sm-user-ui .sm-page-widget-social-links-link .sm-official .sm-fonticon:before {
    display: none;
    }
    Todd Atteberry

    The Green Man Design Studio
Sign In or Register to comment.