How do I remove my theme's logo? | XM Community
Solved

How do I remove my theme's logo?

  • 8 December 2017
  • 3 replies
  • 284 views

Userlevel 4
Badge
How do I remove my theme's logo?
icon

Best answer by AnthonyR 8 December 2017, 22:06

View original

3 replies

Userlevel 7
Badge +7
@Goldie

Open your Look and Feel Menu
Selecting the "Advanced" tab
Click on the green "Add Custom CSS" button
Paste the following in to the box that appears:

#Logo{
display: none;
}
Userlevel 3
Badge +3

AnthonyR How to use this code to remove the logo from the last page of a survey?

Userlevel 1
Badge +5

In case someone is still struggling with this in 2023, here is the code you need to include as Custom CSS for removing the logo from all the survey pages:

/*Remove Logo*/
.Skin #HeaderContainer {
    display: none;
    }
 

Leave a Reply