Manual placement of images / photos

HI all. I’ve used GS off and on for over a decade now, and the templates have always worked well. However, I’d really like to be able to place specific photos/images in specific places - such as image 1 below paragraph 2, image 2 below paragraph 5, images 3/4/5 below paragraph 6 … basically just wherever I want them. And I’d still like to leverage the galleries as well.

How do I go about doing this? Please be specific if you can.

Thanks!

This appears to work in edit mode as long as already in html mode:

[[if "index item.auctionImageURLs 0"]]
<img style="margin:0px auto;display:block" src="[[index item.auctionImageURLs 0]]">
[[endif]]

But when editing in markdown (my current preference), the wrapping if/endif block fails. The image shows if only the tag is present, meaning I cannot use any logic …

I’m liking this less and less.

Try wrapping your macro commands in “pre” tags when using Markdown mode:

<pre>
[[if "index item.auctionImageURLs 0"]]
<img style="margin:0px auto;display:block" src="[[index item.auctionImageURLs 0]]">
[[endif]]
</pre> 

This works great for me.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.