Back button will not show up on the left hand side | Experience Community
Skip to main content
Solved

Back button will not show up on the left hand side

  • May 12, 2026
  • 2 replies
  • 50 views

Forum|alt.badge.img

We are unable to get the back button on surveys to show up on the left hand side.  When it is turned on it shows up next to the next button.  We tried custom css and it doesn’t do anything to change it. 

Did something happen with the new survey experience upgrade?

Best answer by vgayraud

I would assume it’s been change to improve web accessibility compliance.

Try adding this to your custom css to revert to something similar to legacy layouts:

#secondary-navigation {
display: none !important;
}

#primary-navigation {
display: flex !important;
justify-content: space-between !important;
width: 100% !important;
}

#next-button {
margin-left: auto !important;
}

 

2 replies

vgayraud
QPN Level 7 ●●●●●●●
Forum|alt.badge.img+64
  • QPN Level 7 ●●●●●●●
  • Answer
  • May 13, 2026

I would assume it’s been change to improve web accessibility compliance.

Try adding this to your custom css to revert to something similar to legacy layouts:

#secondary-navigation {
display: none !important;
}

#primary-navigation {
display: flex !important;
justify-content: space-between !important;
width: 100% !important;
}

#next-button {
margin-left: auto !important;
}

 


Forum|alt.badge.img

That worked - I was using previous  instead of next!