adding logo to header
-
Hi,
I want to change the settings of the header so it doesn′t display the blog title but a logo instead. Anyone who can help me?
The code looks like this :
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml” <?php language_attributes(); ?>><head>
<meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
<meta http-equiv=”Content-Style-Type” content=”text/css” />
<meta http-equiv=”Content-Script-Type” content=”text/javascript” />
<title><?php bloginfo(‘name’); ?> <?php wp_title(); ?></title>
<meta name=”keywords” content=”” />
<meta name=”description” content=”” /><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 1.0″ href=”<?php bloginfo(‘atom_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
<link rel=”Shortcut Icon” href=”<?php bloginfo(‘stylesheet_directory’); ?>/favicon.ico” type=”image/x-icon” /><script src=”https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js” type=”text/javascript” charset=”UTF-8″></script>
<script src=”<?php bloginfo(‘template_directory’); ?>/js/jquery.easing.1.3.js” type=”text/javascript” charset=”UTF-8″></script>
<script src=”<?php bloginfo(‘template_directory’); ?>/js/jquery.vgrid.0.1.2-mod.js” type=”text/javascript” charset=”UTF-8″></script>
<script type=”text/javascript”>
//<![CDATA[
if (! window.console) window.console = { log: function(){} }; //avoid error$(function(){
var vg = $(“#grid-wrapper”).vgrid({
easeing: “easeOutQuint”,
time: 800,
delay: 60,
selRefGrid: “#grid-wrapper div.x1”,
selFitWidth: [“#container”, “#footer”],
gridDefWidth: 290 + 15 + 15 + 5,
forceAnim: <?php echo (is_singular()) ? 0 : 1; ?>
});$(window).load(function(e){
setTimeout(function(){
// prevent flicker in grid area – see also style.css
$(“#grid-wrapper”).css(“paddingTop”, “0px”);
}, 1000);
});<?php if (is_singular()) : ?>
$(“#single-wrapper”).css(“paddingTop”, “0px”).hide().slideDown(1000);
<?php endif;?>});
//]]>
</script><?php
if (is_singular()) wp_enqueue_script(‘comment-reply’);
wp_head(); ?>
</head><body <?php body_class();?>>
<noscript><p class=”caution aligncenter”>Enable Javascript to browse this site, please.</p></noscript>
<div id=”container”>
<div id=”header”>
<h1>“><?php bloginfo(‘name’); ?></h1>
<p><?php bloginfo(‘description’); ?></p>
</div>In advance – Thanks a lot!!! =)
- The topic ‘adding logo to header’ is closed to new replies.