
ListingDesigns
HTML-Snippets
HTML-Snippets
Here you'll find some simple but useful code-snippets which you can use to enhance your item description. You can copy the code and paste it directly into the description field in GarageSale.
1. I need a clickable link to an external source in my description!
2. I want to add one or more clickable images to my item description!
3. I want to add one or more images to my item description manually!
4. How can I edit HTML-code?
5. I still have a question!
HTML-Snippets - just copy the code snippets and paste them into the description field in GarageSale.
1. I need a clickable link to an external source in my description!
This code produces a simple text-link:
If you want the link to open in a new window, add a 'target="_blank"', like this:
2. I want to add one or more clickable images to my item description!
This code produces a clickable image:
3. I want to add one or more images to my auction description manually!
This code adds an image to your description:
Repeat this with every image you want to include. You have do change the URL (where your image is stored), of course.
GarageSale also provides another way to include images manually:
Acessing Single Auction Image URLs
You can use the [[index item.auctionImageURLs i]] statement to directly access certain image URLs. Substitute 'i' with the index of the auction image whose URL you want to include. Please note that the first image has the index 0, the second one has the index 1, and so on. This code snippet would include the first image directly in your auction description. <img src="[[index item.auctionImageURLs 0]]">
4. How can I edit HTML-code?
There are many HTML-editors out there but I prefer "Taco HTML Editor"! It's easy to use and free.
5. I still have a question!
You're searching for another HTML-snippet? Feel free to post your questions or suggestions at the GarageSale user group
!
1. I need a clickable link to an external source in my description!
This code produces a simple text-link:
<a href="http://www.yourserver.com/target.html"> Insert text here </a>
If you want the link to open in a new window, add a 'target="_blank"', like this:
<a href="http://www.yourserver.com/target.html" target="_blank">
Insert text here
</a>
2. I want to add one or more clickable images to my item description!
This code produces a clickable image:
<a href="http://www.yourserver.com/target.html">
<img src="http://www.yourserver.com/pathto/yourimage.jpg">
</a>
3. I want to add one or more images to my auction description manually!
This code adds an image to your description:
<img src="http://www.yourserver.com/pathto/yourimage.jpg">
Repeat this with every image you want to include. You have do change the URL (where your image is stored), of course.
GarageSale also provides another way to include images manually:
Acessing Single Auction Image URLsYou can use the [[index item.auctionImageURLs i]] statement to directly access certain image URLs. Substitute 'i' with the index of the auction image whose URL you want to include. Please note that the first image has the index 0, the second one has the index 1, and so on. This code snippet would include the first image directly in your auction description. <img src="[[index item.auctionImageURLs 0]]">
(Source: GarageSale Online Manual)
4. How can I edit HTML-code?
There are many HTML-editors out there but I prefer "Taco HTML Editor"! It's easy to use and free.
5. I still have a question!
You're searching for another HTML-snippet? Feel free to post your questions or suggestions at the GarageSale user group