I was coding some of my pets' profiles and was looking at some other profiles for inspiration, and came across Subeta. I like the idea of having something over a textbox or something like that such as how it is at the bottom of the page on Subeta's treasure. Maybe something like how on the Masquerade layout for the site the picture that says "Greetings from Atebus!" is sort of over the rest of the stuff. How might one go about doing something like that?
all you need to do is make a new div and give it a higher z-index than the div you want it to go in front of. if the existing div does not have a defined z-index, you can probably just give the new one a z-index of 2. so inside the style tags, that would look like this:
{position:absolute; top:XXpx; left:XXpx; height:XXpx; width:XXpx; background-image:url(IMAGE URL); z-index:2}
and then outside the style tags, you just put:
you don't need to put anything between those tags. just make sure that the height and width of the new div are the same as the height and width of the image you're using.