How to change the Breadcrumb text colour in layout.css!

1
Can anyone help me regards to how to change the text-colour of the "breadcrumb" text on the left-hand side under the navigation bar in a theme? I am able to change the text-colour when I hover over the text but dont know where to change the text-colour in my layout.css of my theme. Thank you very much!
asked
1 answers
1

In your custom.css file you can edit these elements :

/* Breadcrumbs */

.custom .mendixTitlePath {

color:#ffffff;

}

.custom .mendixTitlePath_navItem {

color:#ffffff;

}

Remember to add your custom.css file to your index.html file.

answered