Might be 7 months late but oh well.. for future reference. A good indication of how to check the section to add your code is to either use IE developer’s tool OR Mozilla’s firebug. Both are add-ons.
As for this case, I am guessing usually in the index.php near the title section (the div’s). I don’t have this theme, but it should be there.
Hi,
I’m not a PHP expert but to insert it into the Dashboard, open the admin-header.php (under wordpress/wp-admin) and edit the code:
</head>
<body class="wp-admin <?php echo apply_filters( 'admin_body_class', '' ); ?>">
<div id="wpwrap">
<div id="wpcontent">
<div id="wphead">
<!-- Insert custom code here -->
<h1><?php if ( '' == get_bloginfo('name', 'display') ) echo ' '; else echo get_bloginfo('name', 'display'); ?><span id="viewsite"><a href="<?php echo trailingslashit( get_option('home') ); ?>"><?php _e('Visit Site') ?></a></span></h1>
</div
You can use that to add a logo above the header with the name of your site below it. Hope this helps.. any questions please feel free to message me. =)