How do I get rid of the scroll bar? | XM Community
Skip to main content

I used custom html to insert a mini survey to evaluate search results. How do I get rid of a scroll bar on the right?
Screen Shot 2020-12-09 at 4.17.44 PM.png

Place your

height 
or
min-height
attribute inside the
style 
of the
iframe 
tag.
src="Your link" 
style ="height: 400px;" 


Just add the below script in Look & Feel->General->Header-Source,
Qualtrics.SurveyEngine.addOnload(function()
{
jQuery("div.ScrollIndicator").css("visibility","hidden");
}
});


https://www.qualtrics.com/community/discussion/comment/32529#Comment_32529I tried this in the header and it made no difference.


https://www.qualtrics.com/community/discussion/comment/32525#Comment_32525Ahmed, it's not an iframe, so this won't work. This is embeded into the page using Custom HTML creative.


In Style under custom CSS add below code: 

 

* {
overflow: hidden;
}
 

This is working for digital intercept


Which one worked 


Leave a Reply