Ver Mensaje Individual
  #3 (permalink)  
Antiguo 08/03/2014, 14:36
Avatar de Marthita23
Marthita23
 
Fecha de Ingreso: enero-2003
Ubicación: Edo Mexico
Mensajes: 485
Antigüedad: 21 años, 3 meses
Puntos: 17
Respuesta: Me pueden ayudar con el ancho de un theme responsive.

Hola TMister ya intente poner el código que me indicas, pero no pasa nada...

Se tendria que modificar algo en esta parte tambien ???? es del single.php

<?php
get_header();
?>

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<h2 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>

<?php the_post_thumbnail('thumbnail'); ?>

<div class="meta">
<ul>
<li><?php _e("Categoría:", 'northern'); ?> <?php the_category(', ') ?> <?php the_tags(__('Tags:&nbsp;', 'northern'), ' , ' , ''); ?></li>
</ul>
</div>

<?php the_content(__('(more...)', 'northern')); ?>

<div class="commentlink">
<?php wp_link_pages(); ?>
<?php // comments_popup_link(__('No Comments', 'northern'), __('1 Comment', 'northern'), __('% Comments', 'northern'), '', __('Comments are closed.', 'northern') ); ?>
</div>

</article>

<?php endwhile; endif; ?>

<?php // comments_template( '', true ); ?>

<section class="pagenav">
<span class="previous"><?php previous_post_link('%link'); ?></span> - <span class="next"><?php next_post_link('%link'); ?></span>
</section>

</section>

<?php get_sidebar(''); ?>
<?php get_sidebar('2'); ?>
<?php get_sidebar('3'); ?>
<?php get_sidebar('4'); ?>