I have overlays on most of my pet/minion images on the Your Pets page but they've all broken again. I've got no idea what the problem could be. Does anyone have any updated coding for this?
This is what I was using:
.span5 img {}
.span5 img[src="http://img.subeta.net/pets/kora_graveyard.png"], .span5 a[href="pet.php?petid=1038738"] img {
padding-top: 200px;
width: 200px; height: 0px;
background-clip: padding;
background-image: url("http://i819.photobucket.com/albums/zz120/ShortAxel/subeta/Spectre_NG.png");
overflow: hidden;}
.span5 img {} .span5 img[src="http://img.subeta.net/items/minion_dead_person.gif"], .span5 a[href="pet.php?act=minion&petid=787529"] img { padding-top: 64px; width: 64px; height: 0px; background-clip: padding; background-image: url("http://i819.photobucket.com/albums/zz120/ShortAxel/subeta/minion_blooderflies.png"); overflow: hidden;}
I don't have the code to do this, but I can tell you that they changed the selectors on that page which is why it isn't working anymore. It no longer uses .span5
That does help some at least, thanks!
That might explain why my code to remove the images above the top links (Create Pet etc) has broken too, if multiple .span things were changed or something. Although I have no idea which code bit was to block those images anymore.
@ ShortAxel
So I had a look and this seems to work :)
a[href$="active&petid=981946"] img {background-image: url("http://i819.photobucket.com/albums/zz120/ShortAxel/subeta/Spectre_NG.png");
padding-top: 200px;
width: 200px; height: 0px;
background-clip: padding;
overflow: hidden;}
a[href$="minion&petid=981946"] img { background-image: url("http://i819.photobucket.com/albums/zz120/ShortAxel/subeta/minion_blooderflies.png"); padding-top: 64px; width: 64px; height: 0px; background-clip: padding; overflow: hidden;}
First one is for the pet, the second one for the minion and you need to fill in the correct ID (pet or the pet the minion is for)