• Hello all,

    So I have this site: https://www.clipspringer.com – (and proud we are of all of them).

    And I have two problems:
    1) In internet explorer you will notice a symbol for a broken image before Post Titles when the post contains an image within the post. There is no broken image placeholder when the image is above the post.

    This leads me to believe my coding for placing images above my posts – is…messing with things a bit. Advice, thoughts, suggestions, help appreciated here.

    2) When people sign up for my RSS feed, only the images placed within the post show up, and I’d like to include the images above the post title show up as well. If anyone knows of an RSS plugin/widget/tool that could downsize images before they enter the feed – I would be very grateful.

    Thanks to all in the WordPress community who help each other. This is great.

    The Clipper.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter clipper

    (@clipper)

    I believe the problem lies in creating a conditional statement before the “img src=….” in the following:

    <div class="itemhead">
    
    <img src="<?php 
    
    	$key="image";
    
    	echo get_post_meta($post->ID, $key, true);
    
    	?>" />
    
    				            <h3><a href="<?php  the_permalink()  ?>"

    Any ideas on how to do that?

    I have a broken image in IE in my header – it is fine in Firefox. My header code is:

    ‘<title><?php wp_title(”); ?><?php if(wp_title(”, false)) { echo ‘ :’; } ?> <?php bloginfo(‘name’); ?></title>
    <meta name=”generator” content=”WordPress <?php bloginfo(‘version’); ?>” />
    <!– leave this for stats please –>

    <link rel=”Shortcut Icon” href=”<?php echo get_settings(‘home’); ?>/wp-content/themes/revolution/images/favicon.ico” type=”image/x-icon” />
    <link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo(‘rss2_url’); ?>” />
    <link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”<?php bloginfo(‘rss_url’); ?>” />
    <link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”<?php bloginfo(‘atom_url’); ?>” />
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
    <?php wp_get_archives(‘type=monthly&format=link’); ?>
    <?php wp_head(); ?>
    <style type=”text/css” media=”screen”>
    <!– @import url( <?php bloginfo(‘stylesheet_url’); ?> ); –>
    </style>
    </head>

    <body>

    <div id=”wrap”>

    <div id=”header”>

    <div id=”headerleft”>
    /”><img src=”<?php bloginfo(‘template_url’); ?>/images/logo.gif” alt=”<?php bloginfo(‘name’); ?>” /><p><h3><?php bloginfo(‘description’); ?></h3></p>
    </div>’

    Can anyone offer a fix?

    I don’t know why but when I post this some of the code text itself turns to blue in the forum psot and it also ads this /”> just before the blue part which is not actually in my header code

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Broken Images Before Title in IE’ is closed to new replies.