I've added this code to display the links for log in/log out, and register/site admin.
<?php wp_loginout(); ?>
<?php wp_register(); ?>
The problem I'm having is the html those commands generate has the text displayed as a list item.
<li><a href="http://www.myblogsurl.com/wp-admin/">Site Admin</a></li>
How can I stop it from making these list items and just only display the link as regular text?
I'm not the best with php and checked over my theme's function code a few times unable to find the problem.
I'm assuming it's how wordpress automatically generates these.