Moving the next and and previous buttons closer together | XM Community
Skip to main content
Solved

Moving the next and and previous buttons closer together

  • April 28, 2023
  • 3 replies
  • 269 views

Forum|alt.badge.img+2

Hi, just wondering if its possible to move the next and previous buttons closer together on a survey? I am creating a survey to be used on mobile and feedback has indicated users are having to swipe to get access to them.

I am currently using a basic template in Qualtrics, no custom CSS

Best answer by Tom_1842

The below CSS should bring the buttons into the center of the screen:

.Skin #Buttons {
text-align: center !important;
}

.Skin #Buttons #NextButton, .Skin #Buttons #PreviousButton {
float: none !important;
margin: 3px !important;
}

.Skin #ProgressBar {
margin-top: 10px !important;
}

 

3 replies

krbhavya
Level 6 ●●●●●●
Forum|alt.badge.img+20
  • Level 6 ●●●●●●
  • April 28, 2023

You can use below css code

.Skin .ButtonGroup button {

margin-right: 5px;

}

 

Add this code in the look & feel.


Tom_1842
Level 8 ●●●●●●●●
Forum|alt.badge.img+28
  • Level 8 ●●●●●●●●
  • Answer
  • April 28, 2023

The below CSS should bring the buttons into the center of the screen:

.Skin #Buttons {
text-align: center !important;
}

.Skin #Buttons #NextButton, .Skin #Buttons #PreviousButton {
float: none !important;
margin: 3px !important;
}

.Skin #ProgressBar {
margin-top: 10px !important;
}

 


Forum|alt.badge.img+2
  • Author
  • Level 1 ●
  • May 2, 2023

The below CSS should bring the buttons into the center of the screen:

.Skin #Buttons {
text-align: center !important;
}

.Skin #Buttons #NextButton, .Skin #Buttons #PreviousButton {
float: none !important;
margin: 3px !important;
}

.Skin #ProgressBar {
margin-top: 10px !important;
}

 

Worked really well for me, thanks for sharing