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

How do I get rid of the scroll bar?

  • December 9, 2020
  • 6 replies
  • 518 views

Forum|alt.badge.img

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

Forum|alt.badge.img+22
  • Level 7 ●●●●●●●
  • 2050 replies
  • December 10, 2020

Place your

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


SurajK
QPN Level 3 ●●●
Forum|alt.badge.img+4
  • QPN Level 3 ●●●
  • 181 replies
  • December 10, 2020

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


Forum|alt.badge.img
  • Author
  • 3 replies
  • December 10, 2020

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


Forum|alt.badge.img
  • Author
  • 3 replies
  • December 10, 2020

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.


Forum|alt.badge.img
  • 5 replies
  • December 4, 2023

In Style under custom CSS add below code: 

 

* {
overflow: hidden;
}
 

This is working for digital intercept


Umang Upadhyay
QPN Level 4 ●●●●
Forum|alt.badge.img+25
  • QPN Level 4 ●●●●
  • 122 replies
  • December 6, 2023

Which one worked