Nobody needs to log in expect me. How can I hide/style the Login link to be really indistinguishable? Or for that matter, remove it all together from the site?
I have it in the sidebar under my site gategories like this:
CATEGORY 1
CATEGORY 2
CATEGORY 3
CATEGORY 4
Login
So how can I style it independent from the other content of the sidebar? I've tried everything I know, somehow the sidebar styling always over rules the stylings I've made ror the login button.
Code from the Sidebar:
<li><h2><?php _e(); ?></h2>
<ul>
<?php wp_list_categories('orderby=ID&show_count=0&title_li='); ?>
</ul>
</li>
<li><h2><?php _e(); ?></h2>
<ul>
<?php wp_register(); ?>
<li id="small"><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
</li>
Thank you