# Come aggiungere un elemento HTML al contenitore della timeline

**URL:** https://meta.discourse.org/t/how-to-add-an-html-element-to-the-timeline-container/111147
**Category:** Support
**Created:** [9 Marzo 2019, 8:52am UTC](https://meta.discourse.org/t/how-to-add-an-html-element-to-the-timeline-container/111147 "2019-03-09T08:52:23Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![bartv](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bartv/32/130052_2.png) [@bartv](https://meta.discourse.org/u/bartv)
#### Post date: [9 Marzo 2019, 8:52am UTC](https://meta.discourse.org/t/how-to-add-an-html-element-to-the-timeline-container/111147/1 "2019-03-09T08:52:23Z")

</div>

Hi,

I’m experimenting with adding an element to the timeline element, but it seems to be very sensitive to changes - whenever I add something it breaks the functionality (the scroller no longer updates) and the timeline will no longer ‘scroll up’ when you reach the end of the page.

Is it at all possible to add something here, and if so what is the recommended way to do it?

I’m trying to achieve something like this:

 ![image](https://global.discourse-cdn.com/meta/original/3X/d/d/dd52bbae1102610a54a1fc37c129d135a13bdcae.jpeg)

---

<div class="post-metadata">

### Author: ![bartv](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bartv/32/130052_2.png) [@bartv](https://meta.discourse.org/u/bartv)
#### Post date: [9 Marzo 2019, 9:50am UTC](https://meta.discourse.org/t/how-to-add-an-html-element-to-the-timeline-container/111147/2 "2019-03-09T09:50:01Z")

</div>

.. and of course I found the answer an hour later 🙂

```plaintext
<script type="text/discourse-plugin" version="0.8">
	// testing only for staff now
	if(Discourse.User.currentProp('staff') == true ) {
		console.log('user is staff');
		api.decorateWidget('topic-timeline-container:before', helper => {
			return helper.rawHtml('')
		});
	}
</script>

```

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [8 Aprile 2019, 9:50am UTC](https://meta.discourse.org/t/how-to-add-an-html-element-to-the-timeline-container/111147/3 "2019-04-08T09:50:07Z")

</div>

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