Código:
Se trata de la cabezera: "header.php"<?php
/**
* @package WordPress
* @subpackage static_Theme
*/
?>
<!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" <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><?php wp_title('«', true, 'right'); ?> <?php bloginfo('name'); ?></title>
<style type="text/css" media="screen">
@import url( <?php bloginfo('stylesheet_url'); ?> );
</style>
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_get_archives('type=monthly&format=link'); ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div class="header-wrapper">
<div class="header pagewidth">
<!-- TITLE -->
<h1><a href="<?php bloginfo('url'); ?>/"><?php bloginfo('name'); ?></a></h1>
<h2><?php bloginfo('description'); ?></h2>
<!-- END TITLE -->
</div>
</div>
<div class="nav-wrapper-outside">
<div class="nav-wrapper pagewidth">
<div class="nav">
<ul>
<!-- MENU -->
<li><a href="<?php echo get_option('home'); ?>">Home</a></li>
<?php wp_list_pages('title_li=&depth=-1' ); ?>
<!-- END MENU -->
</ul>
</div>
</div>
</div>
<div class="pagewidth">
<div class="page-wrap">
<!-- end header -->
La zona que quiero modificar es esta:
Código:
Ahí inserto la imagen, con un simple código en html, lo he introducido de todas maneras, pero cada una es peor... <!-- TITLE -->
<h1><a href="<?php bloginfo('url'); ?>/"><?php bloginfo('name'); ?></a></h1>
<h2><?php bloginfo('description'); ?></h2>
<!-- END TITLE -->
Que es lo que hago mal...







Si tienen solución, por favor, agradeceria que me la digeran...


