I keep forgetting and deleting the pet overlay code when the overlay doesn’t satisfy me anymore… So can anyone help me again with retrieving the code, please? :D
DeviantArt • Instagram • Tumblr • Toyhouse
if the overlay is the same size as the default pet image (200px x 200px), you can just use this:
{
background: url(IMAGE URL) no-repeat;
}
if your overlay is a different size, you'll want to specify that in the code like so (replacing the numbers with the size of the image you're using):
{
width: 400px; height: 400px;
background: url(IMAGE URL) no-repeat;
background-size: 400px 400px;
}
thank you so much!
DeviantArt • Instagram • Tumblr • Toyhouse