<aside> 📌 How to add a sticky ‘made by’ badge in the bottom corner of a Carrd.co site

</aside>

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/84651c8b-a549-4b29-96a3-819a14c5747b/badge.png

Step1 – add the HTML

<a target="_blank" rel="noopener" class="levelsio-by" href="<https://twitter.com/markbowley>"><img src="<https://pbs.twimg.com/profile_images/1181977806017880064/CTKGPHhX_400x400.jpg>" /><p>by @markbowley</p></a>

You can change some of the details for your own needs:

Step 2 – add the CSS

<style>

.levelsio-by {
font-family:"Helvetica Neue",sans-serif;
left:0; /* change to 'right' for a right-corner badge */
bottom:0;
position:fixed;
z-index:100;
border-top-right-radius: 5px; /* change to 'border-top-left-radius' for a right-corner badge */
padding: 6px;
border-top: 1px solid #efefef; /* change the border colour if you want */
border-right: 1px solid #efefef; /* change to 'border-left' for a right-corner badge, and change the border colour if you want */
background: #fff; /* change to your preferred badge background colour */
color: #6f6f6f; /* change to your preferred link colour */
text-decoration:none;
}
.levelsio-by:hover {
background:#fff;
color:rgb(255, 71, 66); /* change to your preferred link hover colour */
}
.levelsio-by img {
border-radius:100%;
width:22px;
vertical-align:middle;
}
.levelsio-by p {
margin:0;
vertical-align:middle;
display:inline;
margin-left:7px;
font-weight:500;
font-size:14px;
}

</style>

You can change some of the details for your own needs (see comments in the code):