I need to change the style of the items in a dropdown, however I don't know how to reach to the specific item:
this is my code:
<li class="nav-item dropdown">
<a class="nav-link menu-icon dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="navbar-toggler-icon"></span>
</a>
<div class="dropdown-menu change-style">
<div class="nav-to-one" >
<a class="dropdown-item font-weight-bold" href="#">Test</a>
<hr class="card-meta-divider m-2">
</div>
</div>
</li>
and I need to change change-style
:
.change-style {
font-family:serif;
}
It does not work in this way!