How do I get rid of the scroll bar? | XM Community
Question

How do I get rid of the scroll bar?

  • 9 December 2020
  • 6 replies
  • 292 views

Badge

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


6 replies

Userlevel 7
Badge +21

Place your

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

Userlevel 5
Badge +4

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

Badge

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

Badge

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.

Badge

In Style under custom CSS add below code: 

 

* {
overflow: hidden;
}
 

This is working for digital intercept

Userlevel 3
Badge +11

Which one worked 

Leave a Reply