1. How do I connect this to my online store? I don't see any kind of place to put a link to URL.
2. How do I put an image here? It looks like it onyl allows text.
1: If your wanting to add a link you'll need to write the link. You can use
Code:
<a href="http://www.mysite.com/">My Site</a>
2: Adding an image also requires a code. You'll have to upload the pic to your server or pic sharing site (like flickr).
Code:
<img src="linktomyimage.jpg">
Or you can make a picture linkable
Code:
<a href="http://www.mysite.com/" target="_blank">
<img src="www.linktomyimage.jpg" width="300" height="221" border="0" style="border:none;" alt="I can name my photo here" />
</a>