Top

KBI on "How to remove background image behind my new header image"

June 3, 2010 by  

Thanks for your reply! I tried to walk through the item you pointed me to but was stymied at the directive to locate and alter a document called theme.php. This is not accessible via the Dashboard of the wordpress.org blog (only the style.css is) so I dug in my files folder on the server and the only similarly named file I could find is called “wp-blog-header.php”. I downloaded that and came up with a short document that included only this script:

<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/

if ( !isset($wp_did_header) ) {

$wp_did_header = true;

require_once( dirname(__FILE__) . ‘/wp-load.php’ );

wp();

require_once( ABSPATH . WPINC . ‘/template-loader.php’ );

}

?>

I have a strong feeling that I am not meant to touch that document and that it won’t help me fix this problem.

Share

Comments

Facebook comments:

Feel free to leave a comment...
and oh, if you want a pic to show with your comment, go get a gravatar!





*
Bottom