Remove Qualtrics Logo | XM Community
Skip to main content
Solved

Remove Qualtrics Logo

  • August 25, 2023
  • 2 replies
  • 606 views

Forum|alt.badge.img+5

Hi Everyone

I understand this is controversial, but for this survey it’s necessary IMO.

I have successfully achieved this using this CSS...

/* hide Qualtrics logo */
body .Skin #Plug a{
height: 0 !important;
padding: 0 !important;
overflow: hidden !important;
}
/* end of hide Qualtrics logo */

But when testing, and reducing my window size on desktop, it reappears below the footer.

 

Hope you can help :)

Best answer by ManfredBM

Hi @parkie_0007,
I’m using the following code in ‘Look and Feel’ → ‘General’ → ‘Header’


<script type="text/javascript">
Qualtrics.SurveyEngine.addOnReady(function() {
jQuery('#Plug').attr('style', 'display:none !important');
});
</script>

 

2 replies

ManfredBM
Level 5 ●●●●●
Forum|alt.badge.img+35
  • Level 5 ●●●●●
  • 113 replies
  • Answer
  • August 25, 2023

Hi @parkie_0007,
I’m using the following code in ‘Look and Feel’ → ‘General’ → ‘Header’


<script type="text/javascript">
Qualtrics.SurveyEngine.addOnReady(function() {
jQuery('#Plug').attr('style', 'display:none !important');
});
</script>

 


Forum|alt.badge.img+5
  • Author
  • Level 5 ●●●●●
  • 157 replies
  • August 25, 2023

Thanks :)