Search code examples
cssqualtrics

How to hide LOGO using CSS code in Qualtrics Survey?


I want to hide my company LOGO from the last page of survey using CSS in LOOK & FEEL of Qualtrics Survey. I'm using the below code:

#Logo{display: none;}

This code hides the LOGO from all the pages of the survey. Is there a way to modify this code to hide the LOGO just from the last page of my survey.

This is how the look & feel of Qualtrics looks like:

Look & Feel Page in Qualtrics


Solution

  • Remove the CSS that hides the logo from the Look & Feel Custom CSS. Add the following to the question text of a question on the last page of the survey in HTML View:

    <style>#Logo{display: none;}</style>