Customizing look of Navigation menu on Dashboard

The side menu is a <div class="md-sidenav-left"> and the text of the menu items is a <p>

So this seems to be sufficient for styling the text

<style>
    .md-sidenav-left p {
        color: yellow;
        font-size: 2em;
    }
</style>

Untitled 2

But it may depend on settings in the Dashboart Theme and Site tabs

2 Likes