Support » Fixing WordPress » IE 6 shows images alt text and broken image symbol

  • Hi everybody,

    I got a problem with the IE6. The browser shows images but with a border and a broken image symbol.

    I dont know, if this is a problem with my IE configuration or with wordpress.

    Do you got suggestions how I can solve my problem?

    Link to Page: http://www.psvdev.de/beta/windsurfing
    The page is protected:
    username: windsurfing
    password: wind_?etc

    Heres a link to an image which shows my problem:

Viewing 1 replies (of 1 total)
  • Thread Starter Gerry-Psv

    (@gerry-psv)

    I found some interesting in the classes.php (on line 1253)

    if ( (! empty($feed_image)) || (! empty($feed)) ) {
    $link .= ‘ ‘;

    if ( empty($feed_image) )
    $link .= ‘(‘;

    $link .= ‘term_id, $category->taxonomy, $feed_type ) . ‘”‘;

    if ( empty($feed) )
    $alt = ‘ alt=”‘ . sprintf(__( ‘Feed for all posts filed under %s’ ), $cat_name ) . ‘”‘;
    else {
    $title = ‘ title=”‘ . $feed . ‘”‘;
    $alt = ‘ alt=”‘ . $feed . ‘”‘;
    $name = $feed;
    $link .= $title;
    }

    $link .= ‘>’;

    if ( empty($feed_image) )
    $link .= $name;
    else
    $link .= “<img src=’$feed_image’$alt$title” . ‘ />’;
    $link .= ‘‘;
    if ( empty($feed_image) )
    $link .= ‘)’;

    Can I fix my problem at this place? Im not good on php. Can I block the displaying of the broken-image symbol?

Viewing 1 replies (of 1 total)
  • The topic ‘IE 6 shows images alt text and broken image symbol’ is closed to new replies.