Efectivamente ya lo tenia descargado, estoy mirando sus css y ahora te digo
El tema, lo puedes previsualizar aqui:
http://wordpress.org/extend/themes/tree-houseEsto es lo referente a la hoja de estilos:
/************** Inner Content *********************/
.main_left{
width:640px;
float:left;
background:#ece3c5;
background:url(images/content_top.png) no-repeat left top;
z-index:0;
}
.content_bg
{
background:url(images/content_bg.png) repeat-y left top;
padding:0px 20px;
}
.content_top
{
background:url(images/content_top.png) no-repeat left top;
padding-top:25px;
}
.content_bottom
{
background:url(images/content_bottom.png) no-repeat left bottom;
height:61px;
}
En header.php se hace referencia a parte de esos divs, y en index.php a otros.
Para que te aclares mejor, este es el contenido de header.php
<!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">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title>
<?php if (is_home()) { ?>
<?php bloginfo('description'); ?>
:
<?php bloginfo('name'); ?><?php } ?>
<?php if (is_page()) { ?>
<?php wp_title(' '); ?>
<?php if(wp_title(' ', false)) { echo ' : '; } ?>
<?php bloginfo('name'); ?><?php } ?>
<?php if (is_404()) { ?>
Page not found : <?php bloginfo('name'); ?>
<?php } ?>
<?php if (is_archive()) { ?>
<?php wp_title(' '); ?>
<?php if(wp_title(' ', false)) { echo ' : '; } ?>
<?php bloginfo('name'); ?>
<?php } ?>
<?php if(is_search()) { ?>
<?php echo wp_specialchars($s, 1); ?>
:
<?php bloginfo('name'); ?>
<?php } else if (is_single()){ ?>
<?php { wp_title(' ');if(wp_title(' ', false)) { echo ' : '; }single_cat_title();echo " : "; bloginfo('name');} ?>
<?php } ?>
</title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/dhtml.js"></script>
<!--[if IE 6]>
<script src="<?php bloginfo('stylesheet_directory'); ?>/js/DD_belatedPNG.js"></script>
<script>
/* EXAMPLE */
DD_belatedPNG.fix('div,img,ul,li');
/* string argument can be any CSS selector */
/* .png_bg example is unnecessary */
/* change it to what suits you! */
</script>
<![endif]-->
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_head(); ?>
</head>
<body>
<div class="main_outer">
<div class="main_green">
<div id="main">
<a name="top"></a>
<div class="header">
<div class="header_top">
<div class="header_left">
<div class="title">
<h1>[url="<?php bloginfo('url'); ?>"]<?php bloginfo('title'); ?>[/url]</h1>
<h3><?php bloginfo('description'); ?></h3>
</div>
</div>
<div class="header_right">
<div class="header_search">
<form action="<?php bloginfo('url'); ?>" method="get">
<input class="search_text" type="text" name="s" value="" onfocus="this.value=(this.value=='') ? '' : this.value;" onblur="this.value=(this.value=='') ? '' : this.value;" />
<input class="search_btn" type="submit" value="Go" />
<div style="clear:both"></div>
</form>
</div>
<div style="clear:both;"></div>
Hey there! Thanks for dropping by Theme Preview! Take a look around
and grab the [url="<?php bloginfo('rss2_url'); ?>"]RSS feed[/url] to stay updated. See you around!</p>
</div>
<div style="clear:both;"></div>
</div>
<div class="nav">
<ul id="nav">
[*][url="<?php bloginfo('url'); ?>"]Home[/url]
<?php wp_list_pages('title_li='); ?>
[/list]
<div style="clear:both;"></div>
</div>
<div class="nav_bottom"></div>
</div>
<div class="main_content">
<div class="main_left">
<div class="content_top">
<div class="content_bg">
Y este es el contenido de idnex.php
<?php get_header(); ?>
<?php
if (have_posts()) : ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
<div style="clear:both;"></div>
</div>
<?php while (have_posts()) : the_post();
?>
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<div class="story">
<div class="story_title">
<div class="title_bg">
<div class="title_top">
<div class="title_bottom">
<h2>[url="<?php the_permalink(); ?>"]<?php the_title(); ?>[/url]</h2>
<div class="story_category">[img]<?php bloginfo('stylesheet_directory'); ?>/images/cat_bullet.gif[/img] Filed Under : <?php the_category(',') ?> by <?php the_author(); ?></div>
<div class="story_date">[img]<?php bloginfo('stylesheet_directory'); ?>/images/date_bullet.gif[/img] <?php the_date('M.j,Y'); ?></div>
<div style="clear:both;"></div>
</div>
</div>
</div>
</div>
<div class="storyContent">
<?php the_content('Read More...'); ?>
<div style="clear:both;"></div>
</div>
<div class="postmeta">
<p class="story_tags"><?php the_tags('[img]'.get_bloginfo([/img] Tags : ', ', ', '
'); ?></p>
<p class="read_more">[img]<?php bloginfo('stylesheet_directory'); ?>/images/bullet2.gif[/img] [url="<?php the_permalink(); ?>"]Read more...[/url]</p>
<div style="clear:both;"></div>
</div>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
<div style="clear:both;"></div>
</div>
<?php else: ?>
<h2 class="error"><?php _e('Not Found.'); ?></h2>
<p class="error">Sorry, but you are looking for something that isn't here.</p>
<?php //get_search_form(); ?>
<?php endif; ?>
</div>
</div>
<div class="content_bottom"></div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Simplemente busca en todo el texto donde estan las capas, y ya me explicas un poco que tendriamos que cambiar para conseguirlo.
Muhcas gracias y un saludo