Social Media Icons - Spacing
jerryr
Registered Users Posts: 595 Major grins
hi - I am stumped ! :dunno
How do you shorten (or remove) the spacing between the social media icons ?
Example (I just picking a site)
http://www.joffoto.com/
If I want to shorten (or remove0 the spacing between the Facebook, Instragram and custom link social icons in the footer, is there css to do so ?
thanks
- jerryr
How do you shorten (or remove) the spacing between the social media icons ?
Example (I just picking a site)
http://www.joffoto.com/
If I want to shorten (or remove0 the spacing between the Facebook, Instragram and custom link social icons in the footer, is there css to do so ?
thanks
- jerryr
Part-Time Photographer / Web Designer (Site : jrcustomization.com)
SmugMug Sites - Creative Examples
Favorite Images and SmugMug Designs
SmugMug Sites - Creative Examples
Favorite Images and SmugMug Designs
0
Comments
tailoredportraits.com
Former SmugMug Product Team
aaron AT aaronmphotography DOT com
Website: http://www.aaronmphotography.com
My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations
I have see posts / questions regarding the social media icons.
The trick I use :
- Create the button (40px by 40px) or a size close to that
- Upload to your SmugMug site (of course)
- Change the social media settings to Icon Size Medium; Type Default Icons; Color Branded
To change (for example) the Link Icon :
.sm-page-widget-social-links-link .sm-official .sm-fonticon
{
background-image: url("###");
height: 40px;
width: 40px;
background-repeat: no-repeat;
background-position: top center;
color: transparent;
padding-right: -5px !important;
margin-right: -5px !important;
}
.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;
}
### is the URL of your button
Adjust the padding and margin right accordingly to move the icons closer
Examples of customized icons :
http://www.jakigoodmiller.com/Seniors/Home
https://joeurbz.smugmug.com
http://oni-studio.smugmug.com/
http://www.harlanbudowski.com/
SmugMug Sites - Creative Examples
Favorite Images and SmugMug Designs
Former SmugMug Product Team
aaron AT aaronmphotography DOT com
Website: http://www.aaronmphotography.com
My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations