Custom CSS code to remove language options in Simple Layout | XM Community
Skip to main content
Solved

Custom CSS code to remove language options in Simple Layout

  • November 17, 2023
  • 4 replies
  • 267 views

Forum|alt.badge.img+1

Good morning,

 

I am trying to remove the language dropdown box on one of my surveys.  The CSS code that used to work for this with the classic layout does not work under the simple layout.  

Would anyone know how to get this to work under the simple layout?  

Thanks in advance!

Best answer by Shashi

Use below CSS in simple layout to remove language dropdown:

#language-selector-structure{
display:none;
}

 

4 replies

Shashi
Level 8 ●●●●●●●●
Forum|alt.badge.img+34
  • Level 8 ●●●●●●●●
  • 654 replies
  • Answer
  • November 19, 2023

Use below CSS in simple layout to remove language dropdown:

#language-selector-structure{
display:none;
}

 


Forum|alt.badge.img+1
  • Author
  • 1 reply
  • November 20, 2023

@Shashi 

 

That worked.  Thanks a million!


Forum|alt.badge.img+1
  • Level 1 ●
  • 8 replies
  • August 23, 2024

I could not get this fix to work. I just added the text you provided to the Custom CSS box. Should it go elsewhere? @Shashi Many thanks if you can help!

 


Forum|alt.badge.img+1
  • Level 1 ●
  • 8 replies
  • August 23, 2024

Nevermind! I inspected it and the title was changed, I guess. This worked:

#language-selector-container{
display:none;
}