On a drop down menu I want to move one of the blocks. Is it possible to target this specific ul by using the span class name Riding and Racing? Without effecting any of the other menus.
<ul class="gm-links">
<li class="gm-item gm-heading">
<a class="gm-target js-no-transition">
<span class="gm-text">Riding and Racing</span>
</a>
</li>
</ul>
CSS:
.gm-links ??? {
}
.gm-links span { }.gm-links .gm-text { }. This will target all gm-text classes inside gm-links classes.