I am facing an issue with a tab. You can see the link here below:
<div class="dm-main-tab-menu">
<ul>
<li class="Content active"><a accesskey="1" href="?content">Content</a></li>
<li class="Objects"><a accesskey="1" href="?library">Libraries</a></li>
<li class="Forms"><a accesskey="1" href="?applications">e-Forms</a></li>
<li class="Reports"><a accesskey="1" href="?statistics">Statistics</a></li>
<li class="Settings"><a accesskey="1" href="?settings">Settings</a></li>
</ul>
</div>
As you can see the Second tab which is "Libraries" when hovering it, the icon is not visible and also the same issue for active.
Can someone please help me to fix this issue?
Replace this:
For this:
You are effectively setting the background of your Objects element to something else, which is not the effect you desire (according to your question). Instead leave it as is and let :active do something else for you if you desire, from there on is up to your personal implementation.