Usando un tema de wordpress hice un cambio de posicion de la barra lateral y el contenido general (de derecha a izquierda i viceversa). Tot va perfecto excepto la pagina de inicio en los navegadores de IE (cuando clicas en cualquier link del menu se coloca normal).
He estado revisando index.php pero no logro encontrar el problema.
La web.
I el codigo de index.php
Código :
Código :
<?php get_header(); ?> <?php $options = get_option('blocks2_options'); ?> <?php if ($options['notice'] && $options['notice_content']) : ?> <div class=" <?php if($options['notice_color'] == 1) {echo 'box';} else if($options['notice_color'] == 3){echo 'errorbox';} else{echo 'messagebox';} ?> normalfont"> <?php echo($options['notice_content']); ?> </div><?php endif; ?><?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); update_post_caches($posts); ?> <div class="post" id="post-<?php the_ID(); ?>"> <div class="caption"> <h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> <!-- ratings --> <?php if(function_exists('the_ratings')) { the_ratings(); } ?> <div class="fixed"></div> </div> <div class="meta"> <div class="info"> <?php the_time(__('j F Y', 'blocks2')) ?> <?php if ($options['categories']) : ?> | <?php _e('Categories: ', 'blocks2'); the_category(', '); ?> <?php endif; ?> <?php if ($options['tags']) : ?> | <?php _e('Etiquetes ', 'blocks2'); the_tags('', ', ', ''); ?> <?php endif; ?> </div> <div class="comments"><?php comments_popup_link(__('Sense comentaris', 'blocks2'), __('1 comentari', 'blocks2'), __('% comentaris', 'blocks2')); ?><?php edit_post_link(__('Edit', 'blocks2'), ' | ', ''); ?></div> <div class="fixed"></div> </div> <div class="content"> <?php the_content(__('Read more...', 'blocks2')); ?> <div class="fixed"></div> </div> </div> <?php endwhile; ?> <?php else : ?> <div class="errorbox"> <?php _e('Sorry, no posts matched your criteria.', 'blocks2'); ?> </div><?php endif; ?> <div id="pagenavi"> <?php if(function_exists('wp_pagenavi')) : ?> <?php wp_pagenavi() ?> <?php else : ?> <span class="alignleft floatleft"><?php previous_posts_link(__('« Noves entrades', 'blocks2')); ?></span> <span class="alignright floatright"><?php next_posts_link(__('Older Entries »', 'blocks2')); ?></span> <?php endif; ?> <div class="fixed"></div></div> <?php get_footer(); ?>
Si alguien pudiera echarle un vistazo, lo agradeceria.
Sé que es dificil (llevo dias tras de ello). Cualquier ayuda o consejo serà maravillosamente bien acogido.
besos