> For the complete documentation index, see [llms.txt](https://docs.eximee.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.eximee.com/documentation/documentation-en/budowanie-aplikacji/interfejs-uzytkownika/formularze/biblioteka-komponentow-bazowych/4-tresci/tresc-textcontent/przyciski-nawigacyjne-pagenavigationlink-w-tresci-formatowanej.md).

# Navigation buttons (PageNavigationLink) in formatted content

{% hint style="info" %}
Availability of functionality depends on the license and may not be available in all deployments.
{% endhint %}

Example - clicking the button **Change** redirects to a previously defined page.

![Figure 1. Example content with a navigation button](/files/fe0525a073995d32767fb6f0dfa8ddeed01ab058)

* To create such a link, we need to place into **Content** (TextContent) a div with the appropriate class and attribute:
  * class **page-link**
  * attribute **mid** with the value of the page MID to which we want to redirect
* For example, it would look like this:

{% code title="Example link element" %}

```html
<div class="page-link" mid="Page1">Change</div>
```

{% endcode %}

* The above link will redirect to Page1, if it exists.

## HTML code creating the Content (TextContent) from the screenshot above

{% code title="Example HTML" expandable="true" %}

```html
<div style="background-color: #eeeeee; padding: 20px; position: relative;">
  <div>
    <span style="font-size: 1.17em; font-weight: bold;">Selected card</span>
  </div>
  <div class="page-link" mid="Page1" style="position: absolute; padding: 20px; right: 0; top: 0; color: #003574">
    Change >
  </div>
  <div>
    <img src="form/biz/spotify-gift-card.png" height="83" width="127">
  </div>
  <div>
    <p>Card type<br>
      <span style="font-weight: bold">Spotify</span>
    </p>
  </div>
  <div>
    <p>Price<br>
      <span style="font-weight: bold">200.00 PLN</span>
    </p>
  </div>
</div>
```

{% endcode %}

{% hint style="info" %}
Demo request: demoSidebar
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.eximee.com/documentation/documentation-en/budowanie-aplikacji/interfejs-uzytkownika/formularze/biblioteka-komponentow-bazowych/4-tresci/tresc-textcontent/przyciski-nawigacyjne-pagenavigationlink-w-tresci-formatowanej.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
