Change text color of language selector widget

1
Hi,   I'm trying to change the text color of the widget and I can't change it. By default the color is white and I would like to set it to blue. Does anyone know how to change it?   The widget URL is https://marketplace.mendix.com/link/component/202738   Thanks, Mikel Castro
asked
2 answers
1

Hi Mikel,

You can apply some custom styling to give the widget the look that you need. For instance if you want to change the selected language color:

.widget-language-selector {
  color: blue;
}

Or if you want to change the dropdown item color:

.widget-language-selector .popupmenu-menu .popupmenu-basic-item {
  color: blue;
}

 

answered
1

Open the “custom.css” file and add following css code to change text color of widgwt.

 

.mx-name-containerClass .mx-name-text {

color : blue;

}

answered