Move next button and remove spacing | XM Community

Move next button and remove spacing

  • 7 November 2022
  • 2 replies
  • 140 views

Userlevel 2
Badge +4

I'm wanting to move the next button to a middle alignment and remove spacing between the question text and the next button but am unsure of how to do this.
You can see the big gap between the last line of text and the next button, which I'd like to eliminate or shorten.
And I'd like to move the next button to being centered in the middle.
This was taken from my mobile as it looks currently.
Picture1.jpg


2 replies

Userlevel 7
Badge +36

RandalB
You can include the below code in Custom CSS in look and feel. It should reduce the space and center align button, assuming you are using Modern layout.
.Skin #Buttons {
    text-align: CENTER !important;
padding: 0px; 
margin-top: 10px;
overflow: hidden;
}


.Skin .QuestionOuter {
    -ms-overflow-style: auto;
    padding-bottom: 0px;
}
Hope it helps!

Userlevel 2
Badge +4

Yes, that worked. Thank you!

Leave a Reply