How to Add Social Media Icons to an Email Signature
Enhance your email signature by adding social media icons. Discover step-by-step instructions to turn every email into a powerful marketing tool.

Adding social media icons to your Blogger site is a small change that makes a huge impact, connecting your blog content directly to your growing online community. This guide will walk you through several easy-to-follow methods, from a simple built-in gadget to custom HTML and CSS, so you can choose the approach that best fits your skill level.
Before jumping into the "how," it's helpful to understand the "why." Your Blogger website is the homebase for your content, but your social media profiles are where you build active, engaged communities. Placing social icons on your blog isn't just about decoration, it's a strategic move to link these two worlds. It gives your readers a direct path to follow you, stay updated, and become part of your community.
Here’s what you gain:
If you're looking for the quickest, code-free way to add social media icons, Blogger's built-in gadget is your best friend. This method takes just a couple of minutes and is perfect for beginners who want a simple, clean look.
While the built-in gadget is easy, it offers limited customization in terms of icon style. If you want to use unique icons that match your blog’s aesthetic or include platforms not listed in the default gadget, the HTML/JavaScript gadget gives you complete control.
First, you need the icon images themselves. You can either create your own or find free ones from various websites. When choosing, look for icons that have a consistent style (e.g., all circles, all squares, same color scheme).
Once you've downloaded your icons (as PNG or SVG files), you need a place to host them online so you can link to them. You can't just upload them directly to the gadget. A simple way to do this is to upload the icon images to a new, private Blogger post without publishing it. After uploading, switch to the "HTML view" of the post editor to get the image URL for each icon.
You can't link to your profiles without the right URLs! Open each of your social media profiles in a separate browser tab and copy the complete URL from the address bar (e.g., https://www.instagram.com/yourusername). Paste these into a text document to keep them handy.
This is where we put it all together. The structure is simple: it’s an HTML list where each list item contains a linked image. Here's a template you can use. Copy this code into a simple text editor (like Notepad or TextEdit).
<,ul>,
<,li>,
<,a href="YOUR_INSTAGRAM_URL_HERE" target="_blank" rel="noopener" title="Follow us on Instagram">,
<,img src="URL_TO_YOUR_INSTAGRAM_ICON_IMAGE_HERE" alt="Instagram Icon">,
<,/a>,
<,/li>,
<,li>,
<,a href="YOUR_TIKTOK_URL_HERE" target="_blank" rel="noopener" title="Follow us on TikTok">,
<,img src="URL_TO_YOUR_TIKTOK_ICON_IMAGE_HERE" alt="TikTok Icon">,
<,/a>,
<,/li>,
<,li>,
<,a href="YOUR_LINKEDIN_URL_HERE" target="_blank" rel="noopener" title="Connect on LinkedIn">,
<,img src="URL_TO_YOUR_LINKEDIN_ICON_IMAGE_HERE" alt="LinkedIn Icon">,
<,/a>,
<,/li>,
<,/ul>,
Now, just replace the placeholders:
Add a new `
` block for each social media profile you want to include.
If your new icons are stacked vertically or are too big, you can easily style them with a bit of CSS. This lets you change their size, alignment, and add cool hover effects.
To apply styles specifically to our social icons, we need to add an ID to our HTML code. Modify your HTML gadget code by wrapping the `
` with a unique ID, like this:
<,div id="custom-social-icons">,
<,ul>,
<,!-- Your list of icons here -->,
<,/ul>,
<,/div>,
Save the gadget with this updated code.
Copy and paste the code below into the custom CSS box. Feel free to adjust the values (like `32px` or `10px`) to match your design.
/* --- Custom Social Icons Styling --- */
/* container for the list */
#custom-social-icons ul {
list-style-type: none, /* Removes the bullet points */
padding: 0,
margin: 0,
text-align: center, /* Center-aligns the icons in their container */
}
/* each list item */
#custom-social-icons li {
display: inline-block, /* Aligns icons horizontally instead of vertically */
margin: 0 10px, /* Adds 10px of space between each icon */
}
/* the icon images themselves */
#custom-social-icons img {
width: 32px, /* Set your desired icon size */
height: 32px,
vertical-align: middle,
opacity: 0.8, /* Makes icons slightly transparent */
transition: opacity 0.2s ease-in-out, /* Smooth transition effect for hover */
}
/* the effect when someone hovers over an icon */
#custom-social-icons img:hover {
opacity: 1.0, /* Makes icons fully opaque on hover */
}
Once you've pasted the code, click the Save button in the bottom-right corner of the screen. Now your icons should be horizontally aligned, properly spaced, and feature a subtle hover effect!
Adding social media icons to your Blogger site is a fundamental step in converting readers into followers and building a lasting community around your content. Whether you opt for the simple built-in gadget or create a fully customized set with HTML and CSS, you are building a valuable bridge between your blog and your social channels.
Once those visitors start landing on your social pages, keeping your content flow consistent becomes the next challenge. At Postbase, we built our tool specifically for content creators managing multiple platforms. Our visual calendar helps you plan posts across TikTok, Instagram, and more, all from one place. We designed it to be simple, reliable, and focused on modern content like short-form video, so you can spend less time juggling tabs and more time creating.
Enhance your email signature by adding social media icons. Discover step-by-step instructions to turn every email into a powerful marketing tool.
Learn how to add your Etsy link to Pinterest and drive traffic to your shop. Discover strategies to create converting pins and turn browsers into customers.
Grant access to your Facebook Business Manager securely. Follow our step-by-step guide to add users and assign permissions without sharing your password.
Record clear audio for Instagram Reels with this guide. Learn actionable steps to create professional-sounding audio, using just your phone or upgraded gear.
Add translations to Instagram posts and connect globally. Learn manual techniques and discover Instagram's automatic translation features in this guide.
Optimize your Facebook Business Page for growth and sales with strategic tweaks. Learn to engage your community, create captivating content, and refine strategies.
Wrestling with social media? It doesn’t have to be this hard. Plan your content, schedule posts, respond to comments, and analyze performance — all in one simple, easy-to-use tool.