code for adding a banner to your page

<style>
main:before {
width: 100%;
height: 300px;
display: block;
content: "";
background-image: url('URL');
background-position: center center;
background-size: cover;
}
@media only screen and (max-width: 600px) {
main:before{
height: 200px;
}
}
</style>




note: in the area that says ‘URL’ copy the image link and paste it there

hope this helps !!


1 Kudos

Comments

Displaying 0 of 0 comments ( View all | Add Comment )