Did Qualtrics remove an element today? | XM Community
Question

Did Qualtrics remove an element today?

  • 7 November 2019
  • 4 replies
  • 3 views

Badge
All of my surveys lost a line of explanatory status text today. The text was being displayed at the top of each screen, via this javascript snippet:

let logoElement = jQuery("#Logo")[0]; // Get logo element to display some text
logoElement.innerHTML = "my status text is inserted here"

That element was there yesterday in all of my surveys, and it's gone today.

I'm guessing that Qualtrics removed that element from the platform, but I only know enough javascript to be dangerous, and I'd like to restore that line of text to the top of my pages.

Thanks in advance for any help and advice!

-Ted

4 replies

Userlevel 7
Badge +27
The Logo element is still there. Maybe it is hidden in the theme you are using. Use your browser's Inspect feature to look at the styles applied to the element.
Badge
Thanks Tom!
Userlevel 7
Badge +27
It would appear the "Blank" theme has been changed to hide the LogoContainer and Logo divs. Add this to Look & Feel/Custom CSS to unhide them:
```
.Skin #LogoContainer, .Skin #Logo {
display: block;
}
```
Badge
That works great, Tom. Thanks again for your contributions to this forum.

You are a national treasure!

Leave a Reply