Trying to upload header image and finding banner tag
-
I’m trying to do two things to my blog (:
1) Replace my header text with an image
2) Make sure my blog name still appears in my browser and search resultsThe only problem is that instead of having a header tag on my style.css I have this:
#banner {
width: 675px;
height: 145px;
padding: 0;
margin: 0;
}#banner h1 {
padding: 45px 0 0 0px;
font-size: 2.26em;
color: #dddddd;
}#banner h3 {
padding: 3px 0 0 0px;
color: #999999;
font-size: 1.06em;
font-style: normal;
}The tutorials I find on adding header images talk about header tags but not banner tags. Also, my header.css doesn’t look like the ones referred to in other tutorials. It starts like this:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml” xml:lang=”en”>
<head>
<meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
<title><?php bloginfo(‘name’); ?> <?php if ( is_single() ) { ?> » Archive <?php } ?> <?php wp_title(); ?></title>
<meta name=”generator” content=”WordPress <?php bloginfo(‘version’); ?>” /> <!– leave this for stats –>
<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”<?php bloginfo(‘rss_url’); ?>” />
<link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”<?php bloginfo(‘atom_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
<?php wp_get_archives(‘type=monthly&format=link’); ?>
<?php wp_head(); ?>…etc.
My blog is http://anxiety-driven-life.com/ and I’m using the Plane Jane theme (http://jimmitchell.org/projects/plane_jane/).
I’ve tried contacting the theme author but he’s too busy with other projects to help me out. Any help would be greatly appreciated!
-
You’re in the wrong forum. Help for self-hosted blogs is at http://wordpress.org/support
- The topic ‘Trying to upload header image and finding banner tag’ is closed to new replies.