meb formerly myspace.coveryourselfinoil.com
BlogsMixtapeRandomUsersYou'reTubeGroupsGamesHelp Log in - Register
add image to song section - meb Blogs

add image to song section

cont
2022-02-22 16:42:04
adding an image through css is a little tricky, so heres all the css i used to add an image to my song section =
div#song.contactinfo {
height:276;
}

audioelement {


background: #fee8ff;
}

song.contactInfo:before{


content: "your song name";
display: block;
position: relative;
width: 299px; < play around with these until you like the result
height: 261px; < play around with these until you like the result
background-position: 0,100;
background-size: 100% 100%;
background-image: url();
color:white;

}

cont
2022-02-22 16:42:58
the blog section is really messy but you can still copy all of the above code
Aydoplaydoh
2022-02-22 22:57:45
Here's the css i made for the William Afton page

song.contactInfo::before {


content: "";
display: block;
position: relative;
width: [Number]px;
height: [Number]px;
background-position: 0 0;
background-size: 100% 100%;
background-image: URL([Image URL]);

}
Aydoplaydoh
2022-02-22 22:58:56
^^^ that is another way to do the image to song thing btw
cont
2022-02-24 18:54:49
notice how they are almost the same thing. w3schoolz babey
Zojà
2022-02-25 16:13:35
based

Log in to post comments