Thank you for trying to help me. I attempted to insert this code directly into my theme via my Wordpress blog (I am not interested in setting up a child theme). However, it is not working. Could someone please explain where the code goes? Does it go at the beginning, the end?
-----------------------------------------------------------------------
Chris said: you can either use #access {display:none} in your child theme's style.css or if you want to remove it completely add the following code to your child theme's functions.php:
// remove thematic_access()
function remove_access() {
remove_action('thematic_header','thematic_access',9);
}
add_action('init', 'remove_access');
.. and the menu in the header is gone.
-----------------------------------------
What I want to do is insert one of the two codes above directly into my theme's functions.php area or the style.css area. Surely this is do-able?
Thanks again for trying to help me, I appreciate your time.