I'm working on tweaking a pretty commonly used code but there's one little bit I literally cannot work out for the life of me. In Bipolar page the like button and the Disable Weapons Showing button are running into each other. I want to completely get rid of this but I have no idea how. If anyone could point me to the code that needs to be changed for this, it would be much appreciated!
Only the pet's owner can see the "Disable Weapons Showing" link. Nobody else can't see it and with how outdated that feature is, it's likely going to get removed with the new pet profiles.
If you still want to remove it, this will remove all of column 3 (battle stats, foods eaten, books read, pet job) together with the Disable Weapons Showing link.
{display:none;}
If you want to move the little like button, here's a code that will work. You will need to tweak it a bit, though! The font-size also changes the size of the heart.
.pet_like {
position:absolute;
left:300px;
top:200px;
font-size:14px;
}
The first one changes the colour of the heart and removes the underline from it when you hover your mouse over it. The second one changes the colour of it on mouseover.
.pet_like a {
text-decoration:none;
color:pink;
}
.pet_like a:hover { color:hotpink; }