Hey all,
I’m missing the admin bar at the top of the page after running BuddyPress Template Pack.
I’m fairly certain I know why its missing but I just cant find the code to take it out. Here’s the code that’s causing me the issues, or at least I think.
#wpadminbar { display:none; }
Now, I didn’t add this and I cant find it anywhere int he template files. Its not in the header I created and I cant find another one that might be causing it. The following is my header file…
<html >
<meta charset="" />
<title>
</title>
<link rel="stylesheet" type="text/css" media="all" href="" />
<link rel="pingback" href="" />
<?php
/*
* Add this to support sites with sites with threaded comments enabled.
*/
if ( is_singular() && get_option( 'thread_comments' ) )
wp_enqueue_script( 'comment-reply' )
wp_head();
wp_get_archives('type=monthly&format=link');
?>
<div id="wrapper">
The rogue css occurs right before to ends. I think that its probably part of ‘wp_head():’ but I’ve no idea how to edit that.
Help?