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.