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?
Page 1 / 1
Place your
heightor
min-heightattribute inside the
styleof the
iframetag.
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.