I'm playing around with The Pineapple's pet profile to figure out how to make profiles. I'm a little stuck now. I don't know how to make the words (currently all it says is "I love pineapples") over the big green square in the middle. I have a background image (the repeating yellow pineapples) and an image on top of it for the green squares. What do I do to make my text appear over the green square? Is it possible, or have I made a misstep somewhere during all my playing around with the profile?
honestly you'd be better off adding the green squares as a background image over the repeating background, which you can do with the following code:
html {
background-image: url(https://i.imgur.com/lFk7wSl.png), url(http://i.imgur.com/B3Yqz4o.png);
background-size: XXpx YYpx, auto;
background-position: XXpx YYpx, left top;
background-repeat: no-repeat, repeat}
and you'd just adjust the pixel values until it looks right. then you'd position until the description aligns with the background.