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?
Page 1 / 1
You can add your own CSS. add “!important” with your CSS element value to give upper weightage of your custom CSS.
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);
});
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.