# How to: Place Images in Columns

## Prerequisites:

Before proceeding, the user should have:

* The permissions to create and edit S-Docs Templates
* An Object Record with Images store in a related list

## Instructions:

We will showcase this by pulling images from the Files related list on an object record

```html
<table>
	<tbody>
		<tr><!--{{!
<lineitemsSOQL>
<class>none</class>
<soql>select ContentDocument.latestpublishedversionid, ContentDocument.LatestPublishedVersion.pathonclient from contentdocumentlink where  LinkedEntityId='{!ObjectID15}' AND (ContentDocument.LatestPublishedVersion.pathonclient LIKE'%.png%')
</soql>
<column newrow="X" type="rtf" prefix="<td><img src='" postfix="' width='150px'
style='border:2px solid black;' /></td>">ContentDocument.latestpublishedversionid</column>
</lineitemsSOQL>
}}-->
		</tr>
	</tbody>
</table>
```

{% hint style="info" %}
Replace “X” in `newrow="X"` with the number of columns to be displayed.\
`!ObjectId15` can be replaced with the object ID of the related list where the images are being pulled from.
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.sdocs.com/sdocs/template-architecture/images-in-s-docs/dynamic-image-solutions/placing-images-in-columns.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
