You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I want to modify my body html of StatusPage with multiple frame in it. When i tried adding few changes, It reflects in header and footer, but not in body. Please help me out in this puzzle.
Hi Arunkumar,
I'm afraid it's not possible to simply modify the body of a status page. Having said that, there are things that can be done when using custom HTML and JS.
You can add custom HTML to the footer and use custom JS to move it to the desired section of your status page. Something like:
<!-- CUSTOM LINKS SECTION START -->
<div class="links-section-header">Additional Links<HR>
<div class="links-section">
Hyperlink 1: <a href="https://statuspage.io"> Statuspage 1</a><BR><BR>
Hyperlink 2: <a href="https://statuspage.io"> Statuspage 2</a><BR><BR>
Hyperlink 3: <a href="https://statuspage.io"> Statuspage 3</a><BR><BR>
Hyperlink 4: <a href="https://statuspage.io"> Statuspage 4</a><BR><BR>
</div>
</div>
<!--CUSTOM LINKS SECTION END -->
<!-- MOVE LINKS SECTION START -->
<script>
$('.links-section-header').insertAfter('.components-section');
</script>
<!-- MOVE LINKS SECTION END -->
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.