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

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 :) 

 

You can have custom css under look and feel like

 

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


Thanks ​@Aggarwal!

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

 


You can add like

 

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


You can try the below code,

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


Leave a Reply