Hello
I have this in the footer file of a wordpress theme.
<div class="footer">
<!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. -->
<div id="icons">
<ul>
<li><a href="#">Wordpress</a></li>
</ul>
</div>
<p>
<?php wp_tag_cloud( 'separator= | ' ); ?>
</p>
</div>
And I want to apply this CSS, which is at the end of my CSS file:
#icons ul li a{
visibility:hidden !important;
}
I've tried a dozen variations of the above CSS / HTML and I seem unable to select the links in li elements in the div#icons.
I've tried every trick I know!