I need help with my layout. I'm using this account to practice but i can seem to make that many things with it. Like for example i don't know how to put a little sticker on the side of my profile. ANY TIPS FOR ANYTHING WILL HELP PLEASE!!!!
Hello!! A little help..?
0 Kudos
Comments
Displaying 1 of 1 comments ( View all | Add Comment )
Jak
Not sure if this is what you're looking for but:
.general-about{
position: relative;
margin-top: 30px;
}
.general-about .profile-pic::before{
content: '';
background: url('YOUR_PIC_HERE') no-repeat;
background-size: cover;
display: block;
width: EDITpx;
height: EDITpx;
z-index: 999;
position: absolute;
top: EDITpx;
left: EDITpx;
}
The ones in caps are customisable, hope this helps :3>
Report Comment