# Cache the right hand sidebar contents

**URL:** https://meta.discourse.org/t/cache-the-right-hand-sidebar-contents/408627
**Category:** Support
**Created:** [July 27, 2026, 5:25pm UTC](https://meta.discourse.org/t/cache-the-right-hand-sidebar-contents/408627 "2026-07-27T17:25:14Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Damian\_Boon](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/damian_boon/32/574032_2.png) [@Damian\_Boon](https://meta.discourse.org/u/Damian_Boon)
#### Post date: [July 27, 2026, 5:25pm UTC](https://meta.discourse.org/t/cache-the-right-hand-sidebar-contents/408627/1 "2026-07-27T17:25:14Z")

</div>

Is there anyway of caching the right sidebar contents, i built a vertical sticky scroll right sidebar on the reddit-ish theme but it jumps around when loading. I also used the wonderful

> [@Right Sidebar Blocks](https://meta.discourse.org/t/right-sidebar-blocks/231067?tl=en):
>
> discourse2Summary Right Sidebar Blocks shows a sidebar to the right of topic lists with a configurable list of blocks.eyeglassesPreview [Preview on Discourse Theme Creator](https://discourse.theme-creator.io/theme/Discourse/right-sidebar-blocks)hammer_and_wrenchRepository Link [https://github.com/discourse/discourse-right-sidebar-blocks](https://github.com/discourse/discourse-right-sidebar-blocks)open_bookNew to Discourse Themes? [Beginner’s guide to using Discourse Themes](https://meta.discourse.org/t/beginners-guide-to-using-discourse-themes/91966) Install this theme component Features The component includes a few blocks you can display in the sidebar: popular-tags …

I was wondering how i would cache this with a 24hr flush?

---

<div class="post-metadata">

### Author: ![Damian\_Boon](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/damian_boon/32/574032_2.png) [@Damian\_Boon](https://meta.discourse.org/u/Damian_Boon)
#### Post date: [July 27, 2026, 5:33pm UTC](https://meta.discourse.org/t/cache-the-right-hand-sidebar-contents/408627/2 "2026-07-27T17:33:27Z")

</div>

I have stopped the initial jump with some css but would still like the content to be cached for 24hrs if at all possible

@media screen and (min-width: 767px) {  
.tc-right-sidebar {  
min-height: calc(100vh - 101px);  
}

.tc-sidebar-inner {  
width: 100%;  
}  
.rs-minimal-gamification-leaderboard {  
min-height: 390px;  
}  
.rs-top\_topics,  
.rs-latest-topics {  
min-height: 460px;  
}  
}
