Previous and next button Equal width | Experience Community
Skip to main content
Solved

Previous and next button Equal width

  • June 22, 2026
  • 3 replies
  • 9 views

Forum|alt.badge.img+1

In Qualtrics, when using a popover interceptor creative, why don’t the Next and Previous buttons appear the same width? Specifically, the Next button looks more elongated than the Previous button.

 

Best answer by vgayraud

Hi,

You seem to be using a survey as embedded target. In your survey’s Look & Feel settings, go to Style > Custom CSS and add these rules.

#primary-navigation {
display: grid !important;
grid-template-columns: 1fr 1fr !important;
}

#primary-navigation .navigation-button {
justify-content: center !important;
}

#primary-navigation #next-button {
grid-column: 2 !important;
}

 

3 replies

gPandey_715
Level 4 ●●●●
Forum|alt.badge.img+10
  • Level 4 ●●●●
  • June 23, 2026

Hi ​@laveenacrasta ,

This is typically expected behavior in popover creatives. The button width is often determined by the button content and styling applied by the creative theme. Since the Next button contains different text/icon spacing, it can appear wider than the Previous button. If equal widths are required, you would need to apply custom CSS (where supported) to set a fixed width or use a flex layout so both buttons occupy the same space.


vgayraud
QPN Level 7 ●●●●●●●
Forum|alt.badge.img+65
  • QPN Level 7 ●●●●●●●
  • Answer
  • June 23, 2026

Hi,

You seem to be using a survey as embedded target. In your survey’s Look & Feel settings, go to Style > Custom CSS and add these rules.

#primary-navigation {
display: grid !important;
grid-template-columns: 1fr 1fr !important;
}

#primary-navigation .navigation-button {
justify-content: center !important;
}

#primary-navigation #next-button {
grid-column: 2 !important;
}

 


Forum|alt.badge.img+1

Thank you ​@vgayraud!! This worked perfectly.