Cory's profile picture

Published by

published
updated

Category: Art and Photography

๐Ÿ–ฅ CSS Snippet: Adding a Banner To Your Profile

If you want to add a banner to your profile, above your profile, here's an easy way to do it. I've also included a way to make it look great on mobile. For whatever image you use, adjust the height tags until it looks nice. 



Remember: always put any CSS in between two Style tags: <style></style> That way, browsers will recognize that what you're trying to do is adjust the style. Also remember that CSS stands for Cascading Style Sheets, so the browser will activate styles from top to bottom!

main:before {
width: 100%;
height: 300px;
display: block;
content: "";
background-image: url('https://via.placeholder.com/1280x720.png');
background-position: center center;
background-size: cover;
}
@media only screen and (max-width: 600px) {
main:before{
height: 200px;
}
}


218 Kudos

โ€”