• Hey, I’m working on a site, https://www.wmmi.ca. Everything works fine on a monitor size screen. I don’t particularly like mobile layouts, so the default layout is also the desktop view on a mobile device. Something interesting is going on though, https://www.wmmi.ca/dev-blog and any archives using the same layout renders text abnormally large on a mobile device. The devblog and archives run off essentially the same code in terms of layout. I can’t for the life of me figure out why. The Id’s and classes are used in other pages, but for some reason they appear normal. Anyone wanna take a crack at it? It’s annoying the hell out of me.

Viewing 1 replies (of 1 total)
  • Thread Starter Spnkmyr

    (@spnkmyr)

    Actually, https://wmmi.ca/2015/04/ which is the archive page for posts in April has the following code removed
    <?php get_template_part( 'content', get_post_format() );?>

    which calls

    <article class="post-listing">
      <div class="post-top">
        <h3 class="post-title"> <a href="<?php the_permalink(); ?>">
          <?php the_title(); ?>
          </a></h3>
        <div class="postlisting-meta"> Posted on
          <?php the_time('F jS, Y') ?>
          by
          <?php the_author(); ?>
          and is filed under
          <?php the_category(', ') ?>
        </div>
      </div>
      <div class="post-content">
        <div class="featured-post"> <a href="<?php the_permalink();?>">
          <?php the_post_thumbnail(); ?>
          </a> </div>
        <div class="post-excerpt">
          <?php the_excerpt(); ?>
          <br>
          <span><a href="<?php the_permalink();?>">| Read More </a> |
          <?php edit_post_link(); ?>
          </span> </div>
      </div>
    </article>
    <br>

    and it appears normal. As soon as I replace it, the problem comes back. You would think there is some kind of problem with the html/css referring to the content call, but as far as i can tell there isn’t.

Viewing 1 replies (of 1 total)
  • The topic ‘Odd troubleshooting’ is closed to new replies.