ALEISONFIRE's profile picture

Published by

published

Category: Layouts

what r those big banner thingies

i js got on here and i was working on my profile and i realized alot of the profiles on here have big banner thingies ontop of their profiles HOW DO I GET THAT!?!?!

Kudos: 0

Comments

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

Report

if youre talking about what I have, this was what i did


<style>
main:before {
    width: 100%;
    height: 150px;
    display: block;
    content: "";
    background-image: url('https://i.pinimg.com/1200x/b5/9d/b0/b59db0a5b2331a2dfb33ae5148481ccc.jpg?width=984&height=655');
    background-position: center center;
    background-size: cover;
    margin: 10px 0;
}
@media only screen and (max-width: 600px) {
    main:before{
        height: 200px;
    }
}
</style>