Hi Paul,
I am trying to do the same thing, and i think i totally botched the code. This is what I have. I am in the "header.php" menu on, chosen from the right sidebar. I tried to follow your directions you gave the previous member, but I think i messed it up. Can you please help? I also downloaded the Custom CSS Manager Plug-In, but I didn't use it. Blah
I uploaded the image again that I want to use and here is the path:
http://localhost:8888/wordpress-1/wp-content/uploads/2013/03/Lugadathemelogoheader2.png'
The pixels are width 370px x height 70px
Can you please respond with how the code should look, from </head> on to the end part? I know i should have copied and paste, but I just knew it was going to work lol.
(it didn't, thank you! )
</head>
<body class="<?php hybrid_body_class(); ?>">
<?php get_template_part( 'menu', 'secondary' ); // Loads the menu-primary.php template. ?>
<div class="row">
<div class="twelve columns">
<div class="row">
<div class="seven columns">
<h1 id= 'site title'
#site-title{
text-indent: -9999px;
background: transparent url('http://localhost:8888/wordpress-1/wp-content/uploads/2013/03/Lugadathemelogoheader2.png') no-repeat 0 0;
width: 300px; /* 300px */
height: 70px; /* 70px */
}
#site-title a {display: block; height: 70px; width:300px; /* same dimensions as #site-title */}#site-title a {display: block; height: 105px; width:292px; /* same dimensions as #site-title */}>
<a>" title="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>"><?php bloginfo( 'name' ); ?></a>
</h1>
</div>
<div class="five columns">
<h2 id="site-description">
<small><?php bloginfo( 'description' ); ?></small>
</h2>
</div>
</div>
<?php get_template_part( 'menu', 'primary' ); // Loads the menu-primary.php template. ?>
<?php if ( get_header_image() ) echo '<img class="header-image" src="' . esc_url( get_header_image() ) . '" alt="" />'; ?>
<hr />
</div>
</div>