I've been trying for the last 10-15 minutes to do a rather simple thing:
Post a picture and link and image to it, so when you click on the image you get taken to a webpage...
And I been doing this on my user profile under a blank space box that has been renamed....
Odd thing is that the first three images work, but the other three just don't appear.
Help?
The last 3 images use scr instead of src. Update the spelling and you'll be fine.
I caught that a few minutes ago, ha ha, my bad. xD
One more question if you don't mind how do you use an image as a background?
Like an image posted online?
For that you need to add some CSS. It can be added inline to whatever you want to add the background to, or you can add a class/id to the object, putting the CSS in your Profile Text.
Inline
<div style="background:url('http://orig01.deviantart.net/2156/f/2015/184/b/b/stump_by_mythnight-d8zrwpc.png')">
...
</div>
CSS in Profile Text, HTML looks like this
<div id="firstBox">
...
</div>
And then in Profile Text...
<style>
{
background:url("http://orig01.deviantart.net/2156/f/2015/184/b/b/stump_by_mythnight-d8zrwpc.png");
}
</style>
And you can read more about background options on W3Schools