How do I remove my theme's logo? | XM Community
Skip to main content
How do I remove my theme's logo?
@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;
}

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


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