How can I remove the underline bellow "-"? I only want the text to be underlined on Hover not the "-"
Many thanks!
HTML
<ul class="menu">
<li>
<a href="#">Commercial Property Management</a>
<ul>
<li>
<a href="#">Industrial</a>
</li>
<li>
<a href="#">Office</a>
</li>
<li>
<a href="#">Retail</a>
</li>
<li>
<a href="#">Shopping Centres</a>
</li>
</ul>
</li>
<li>
<a href="#">Mixed-Use Residential Property Management</a>
</li>
</ul>
CSS
ul.menu li li a:before {
content: "-";
margin-right: 8px;
}