First of all, I know this question was already asked and answered here: CSS on hover show content
But for some reason, it simply ISN'T working for me! So frustrating... I'll try and keep it brief.
HTML
<ul>
<li class="servicesfin"><a href=" ">Financial Advising</a></li>
</ul>
<div class="servicesfindesc">
<p>Offshore Bank accounts, money laundering, hedge funds, tax evasion, investing.</p>
</div>
CSS
.servicesfindesc {
opacity: 0;
visibility: hidden;
}
.servicesfin:hover + .servicesfindesc {
opacity: 1;
visibility: visible;
}