I tried editing the CSS of the element QSIFeedbackButton-flex-container via Look and Feel but no luck. Is there a way to specifically edit the CSS of this element?
Solved
How to edit the CSS for QSIFeedbackButton-flex-container
Best answer by Aggarwal
You need to try custom css like
Qualtrics.SurveyEngine.addOnload(function() {
// Inject CSS to target the specific element
var css = '.QSIFeedbackButton-flex-container { display: none !important; }'; // Example: Hides the element
var style = document.createElement('style');
style.type = 'text/css';
style.appendChild(document.createTextNode(css));
document.head.appendChild(style);
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
