• Resolved ktm161

    (@ktm161)


    I am using the below code in my site https://www.musikmodem.com in order to call up a list of three posts from the ‘features’ category, and display their titles along with an associated image for each post.

    Between the bottom of the associated image and the title of the post, there are 8px when viewing the site with MSIE 7 and FF2 — but in FF3, there are only 7px between the image and title of the second item on the list (and still 8px between the image and title of the first and third items on the list).

    Why would FF3 make such a bizarre display error? Any clues?

    <div id="leftcol">
    <?php query_posts('showposts=3&cat=5'); ?>
    <h3>
    <?php wp_list_categories('include=5&title_li=&style=none'); ?>
    </h3>
    <?php while (have_posts()) : the_post(); ?>
    <div class="feature">
    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><img src="<?php bloginfo('template_url'); ?>/images/feature-thumbs/<?php $values = get_post_custom_values("Image"); echo $values[0]; ?>" alt="" /></a>
    <a href="<?php the_permalink() ?>" rel="bookmark" class="title"><?php the_title(); ?></a>
    </div>
    <?php endwhile; ?>
Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter ktm161

    (@ktm161)

    Bump.

    Nobody else is having image/text spacing issues in FF3 that are not occurring in FF2 and/or MSIE?

    Thread Starter ktm161

    (@ktm161)

    I take it that nobody else has had a similar experience with FF3 altering spacing between text and images that is otherwise correct in FF2 and/or MSIE.

    If that is the case, has anyone had even a similar experience to the one I have described above? Is there a Mozilla-related forum where my inquiry might be better directed in pursuit of an answer to my question?

    Thanks again.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Firefox 3 — strange image/title spacing in a post query list / array’ is closed to new replies.