Replies

Dec 14, 2023 2 years ago
Yer a wizard
Hound
User Avatar

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

Dec 14, 2023 2 years ago
Frenchi
is hopelessly romantic
User Avatar
Vivisect

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; }

Dec 14, 2023 2 years ago
Yer a wizard
Hound
User Avatar

thank you so much!

Please log in to reply to this topic.