I'm moderately code-literate, by which I mean I understand what most of it does but haven't had a whole lot of practice doing it myself. That being said, while working on the profile for this pet the treasure chest doesn't display correctly, and I can't figure out why. Instead of the items appearing in a line, they all appear on top of each other. I've compared it to my pets with the default profile whose treasure displays correctly, and still haven't found the difference in that section. Does anyone know where this problem comes from and how to fix it?
[flower=SeussMD]
I thought that might be it too, but block is the standard. I tried inline-block and inline, to no avail. Thanks, though. :)
[flower=SeussMD]
Here is your problem c:
img {
position: absolute;
top: 0px;
left:0px;
opacity: .75
}
the treasure is actually made of a lot of img tags and this bit basically tells them to all stack in the top left corner of their parent div xD same happens for that pet's minion and pet friends if you had them listed :) So yeah all you need to do is to get rid of that fragment, what did you want to do with it anyway?
Ah, it all makes sense now. Kind of a stupid mistake actually. facepalm Thank you so much! The img tag is for the picture in the background, I meant to change it from a general img to a specific div and completely forgot about it. That should be a fairly easy fix.
[flower=SeussMD]
Haha, it's coding it happens. Not a problem. As for the background image most people on Subeta tend to set that up as a body or html background-image property, you might want to look into that since it comes with an option of specifying exactly how it is positioned as well c:
Definitely might be a good idea. I haven't exactly got a handle on all of the image placement stuff yet, so I'm totally open to advice. I'll give it a shot. Thanks for all your help. :)
[flower=SeussMD]
You are welcome and good luck :D