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.

Embedding a YouTube Short on your website should be simple, but the standard embed code creates a messy, horizontal player that ruins the vertical video experience. You’re not doing anything wrong, YouTube’s default sharing options just haven't caught up with their own content format. This guide will show you the right way to create a clean, vertical, and professional-looking YouTube Shorts iframe for your site.
Before jumping into the how-to, let's quickly cover why this is a smart move for your brand. In a world fixated on short-form video, leveraging your content on every possible surface is just good marketing. Embedding your Shorts accomplishes a few specific goals:
So, what’s going wrong? When you click the "Share" button on a standard, long-form YouTube video, you get an iframe embed option that looks like this:
<,iframe width="560" height="315" src="https://www.youtube.com/embed/VIDEO_ID" title="YouTube video player" frameborder="0" allow="accelerometer, autoplay, clipboard-write, encrypted-media, gyroscope, picture-in-picture, web-share" allowfullscreen>,<,/iframe>,
The problem is that YouTube Shorts don't give you this handy pre-made code. And if you try to build one yourself using a typical Shorts URL, it fails. A YouTube Shorts URL is structured differently:
https://www.youtube.com/shorts/YourVideoID
If you take `YourVideoID` and put it into the standard embed code, you'll end up with a wide, 16:9 player trying to display a 9:16 video. This results in huge black bars on the sides and a tiny video squished in the middle. It looks broken, feels clumsy to interact with, and defeats the entire purpose of creating vertical content in the first place.
To fix this, you need to manually construct the iframe with the right URL and correct dimensions. It’s easier than it sounds.
Creating a perfect Shorts embed only takes two simple steps: adjusting the video URL and setting the iframe to a vertical aspect ratio. Let's walk through it.
The Video ID is the unique string of letters and numbers that identifies a specific YouTube video. You can find it at the end of the Shorts URL.
For example, in this URL:
https://www.youtube.com/shorts/aBCd3Fgh12i
The Video ID is aBCd3Fgh12i.
Go to your YouTube Short, copy that ID from the address bar, and keep it handy. This is the only piece of information you need from the original link.
This is where the magic happens. A Shorts `/shorts/` URL won't work inside an iframe. You need to convert it into the standard `/embed/` URL format that all YouTube embeds rely on.
The correct structure is:
https://www.youtube.com/embed/YourVideoID
Simply take the Video ID you found in the previous step and place it at the end of that URL. That’s it. You now have a working URL that will properly serve your video - you just need to put it inside an iframe.
Now that you have the correct URL, you can build your full iframe code. The most important part is setting the `width` and `height` attributes to match a vertical 9:16 aspect ratio. A standard embed uses a 16:9 ratio (like 560x315), so you have to flip that logic.
Here is a battle-tested, copy-and-paste code snippet. Just replace `YourVideoID` with your own.
<,iframe
width="315"
height="560"
src="https://www.youtube.com/embed/YourVideoID"
title="YouTube video player"
frameborder="0"
allow="accelerometer, autoplay, clipboard-write, encrypted-media, gyroscope, picture-in-picture, web-share"
allowfullscreen>,
<,/iframe>,
Notice the dimensions: `width="315"` and `height="560"`. This creates a perfect vertical rectangle for your Short to play in. Other good vertical dimensions you could use include:
As long as you maintain that vertical ratio, the player will look clean and professional.
You can go a step further by adding parameters to the embed URL to control how your video behaves. These simple additions can help you create a more tailored experience for your visitors.
To add a parameter, add a question mark (`?`) after the Video ID, followed by the parameter. To add multiple parameters, separate them with an ampersand (`&`).
Short-form video often performs better on a loop. To make your embedded Short loop, you need to add two parameters: `loop=1` and `playlist=YourVideoID`. Yes, it’s a bit weird, but you need to tell the player that the video is its own playlist for the loop to engage properly.
Your URL will look like this:
src="https://www.youtube.com/embed/YourVideoID?loop=1&playlist=YourVideoID"
To make the video play automatically when someone visits the page, add `autoplay=1`. You should also add `mute=1`, as most modern browsers block autoplaying videos with sound.
Your URL will look like this:
src="https://www.youtube.com/embed/YourVideoID?autoplay=1&mute=1"
A word of caution: While autoplay can increase views, it can also annoy visitors and slow down page load times. Use it sparingly and only when it genuinely adds to the user experience.
If you want a super clean, minimalist look, you can hide the play/pause bar and other controls with the `controls=0` parameter. This is great for background videos or Shorts that loop seamlessly.
Your URL will look like this:
src="https://www.youtube.com/embed/YourVideoID?controls=0"
<,iframe
width="315"
height="560"
src="https://www.youtube.com/embed/YourVideoID?autoplay=1&mute=1&loop=1&playlist=YourVideoID&controls=0"
title="YouTube video player"
frameborder="0"
allow="accelerometer, autoplay, clipboard-write, encrypted-media, gyroscope, picture-in-picture, web-share"
allowfullscreen>,
<,/iframe>,
Now that you know how to embed your Shorts properly, here are a few final tips on doing it strategically.
Getting your YouTube Shorts to display correctly on your website is all about using the `/embed/` URL format and setting a vertical aspect ratio for your iframe. By following the steps above, you can create a clean, professional viewing experience that enhances your content and funnels traffic back to your YouTube channel.
Embedding videos is a great tactic, but a truly effective social media strategy hinges on streamlined planning and scheduling. We built Postbase because the world of social media now lives on short-form video - Reels, TikToks, and of course, Shorts. We designed it from the ground up to make managing your entire video content calendar across all platforms feel incredibly simple, from seeing your schedule in one clean calendar to publishing videos without a hitch.
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.