Hi All,
Could someone give me guidance on how to get a footer section added to status page ? We are using a Private instance and not sure how to get this done ?
In the footer of status page, we would like to add our email address and contact details that would be visible to our users.
You have to have a public page to add a footer. As an example, to create fixed red footer, do the following:
1. In the Custom footer HTML window, enter
<div class="footer">
<p>Footer</p>
</div>
2. In the Custom CSS window, enter
<style>
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: red;
color: white;
text-align: center;
}
</style>
Additional customs are required to make your footer render as you want, but this should get you started on the HTML and CSS. Example from: https://www.w3schools.com/howto/howto_css_fixed_footer.asp
Hi Patrick,
Welcome to the Atlassian Community!
You would need to add custom HTML & CSS which is available on private plan Growth and higher. If you're on the starter plan then this isn't possible.
If you're on one of the plans that supports this, navigate to Your page -> Customize page and email -> Customize HTML & CSS.
Thanks,
Nick
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.