How to edit the CSS for QSIFeedbackButton-flex-container | XM Community
Skip to main content

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?

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