End Of Survey - Spacing Help | XM Community
Skip to main content
Question

End Of Survey - Spacing Help

  • January 15, 2025
  • 4 replies
  • 28 views

Forum|alt.badge.img+5

Hi Everyone,

This is my EOS message.

How can I reduce this gap in yellow. My EOS message is at the top, but it always seems to centre it.

Thanks :) 

 

4 replies

Aggarwal
Level 4 ●●●●
Forum|alt.badge.img+15
  • Level 4 ●●●●
  • 134 replies
  • January 15, 2025

You can have custom css under look and feel like

 

.EndOfSurvey {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
 


Forum|alt.badge.img+5
  • Author
  • Level 5 ●●●●●
  • 151 replies
  • January 15, 2025

Thanks ​@Aggarwal!

This worked. What about also pulling in this copy to the left? This is also an EOS.

 


Aggarwal
Level 4 ●●●●
Forum|alt.badge.img+15
  • Level 4 ●●●●
  • 134 replies
  • January 15, 2025

You can add like

 

.EndOfSurvey {
    text-align: left !important;
    margin-left: 0 !important;
}
 


gPandey_715
Level 2 ●●
Forum|alt.badge.img+5
  • Level 2 ●●
  • 28 replies
  • January 16, 2025

You can try the below code,

.EndOfSurvey{
    margin: 0 !important;
    padding: 0 !important;
    text-align: left;
}
 


Leave a Reply