• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Kennt sich jemand mit php aus?

Habe es mit dem neuen Code funktioniert, doch es kommt immer wie auch beim anderen Code immer die Bildbeschreibung als Header :((
 
Werbung:
Wäre der Pfad korrekt, würde das Bild ja wohl angezeigt werden, nicht? ;)

Das alt-Attribut ist Pflicht in img-Tags. Ist es nicht angegeben, so ist das HTML-Dokument invalide. Der Inhalt des Attributs sollte aber natürlich angepasst werden.

Und ich wiederhole: Ohne einen Link zur Seite mit dem ('fehlenden') Bild im Header kann ich nicht weiterhelfen, da ich die Pfade so nicht nachvollziehen kann.
 
Das Problem ist, wenn ich dir einen Link gebe, muss ich den Fehler ja so lassen. Das heißt das ihn dann auch Besucher sehen... Ist doch dumm oder? Ich habe doch ein Foto gemacht. Der Inhalt des alt atttibutes wird wiedergegeben. Habe es auch mit WP-Uploads Pfad versucht-->vergebens! Die Pfade stimmen aber wirklich :(
 
Werbung:
Es geht mir nicht darum, wie es aussieht.

Die Permalinks deines Blogs enthalten Slashes. Der Browser erkennt sie als Verzeichnisse an und sucht in einem nicht existierenden Ordner nach dem Bild, sollte der Pfad relativ angegeben sein. Dies könnte einer Ursache sein.

Was auch sein kann ist, dass die Grafikdatei beschädigt ist.

Aber all das kann ich nicht prüfen, wenn ich nicht in den Quellcode sehen kann, um Werkzeuge anzuwenden.
 
Was muss ich tun damit du den Quellcode sehen kannst? Vereinbaren wir eine Zeit, wo ich für ein paar Minuten den "Fehler" laufen lasse.
 
Füge das Bild ein, öffne den Quellcode, kopiere alles und füge es hier in HTML-BBCode-Tags ([HTML ] und [/HTML ] ohne Leerzeichen ). Oder du stellst das Bild von jetzt bis etwa 20.30 rein.
 
Werbung:
Also bei dem header habe ich den Header:

PHP:
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="main">
*
* @package WordPress
* @subpackage Twenty_Ten
* @since Twenty Ten 1.0
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php
/*
* Print the <title> tag based on what is being viewed.
*/
global $page, $paged;

wp_title( '|', true, 'right' );

// Add the blog name.
bloginfo( 'name' );

// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";

// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );

?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<?php
/* We add some JavaScript to pages with the comment form
* to support sites with threaded comments (when in use).
*/
if ( is_singular() && get_option( 'thread_comments' ) )
wp_enqueue_script( 'comment-reply' );

/* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
</head>

<body <?php body_class(); ?>>
<div id="wrapper" class="hfeed">
<div id="header">
<div id="masthead">
<div id="branding" role="banner">
<?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
<<?php echo $heading_tag; ?> id="site-title">
<span>
<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><img src="http://kurtgefasst.de/wp-content/uploads/LOGO.png" alt="Header" /></a>
</span>
</<?php echo $heading_tag; ?>>
<div id="site-description"><?php bloginfo( 'description' ); ?></div>

<?php
// Check if this is a post or page, if it has a thumbnail, and if it's a big one
if ( is_singular() && current_theme_supports( 'post-thumbnails' ) &&
has_post_thumbnail( $post->ID ) &&
( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) &&
$image[1] >= HEADER_IMAGE_WIDTH ) :
// Houston, we have a new header image!
echo get_the_post_thumbnail( $post->ID );
elseif ( get_header_image() ) : ?>
<img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
<?php endif; ?>
</div><!-- #branding -->

<div id="access" role="navigation">
<?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
<div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div>
<?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
</div><!-- #access -->
</div><!-- #masthead -->
</div><!-- #header -->

<div id="main">

Unbenannt.jpg
 
Das ist das Template. Ich benötige aber den Quelltext, der beim Besucher im Browser ankommt. Der von dir gepostete Code wird schließlich in reines HTML umgewandelt.
 
Werbung:
Du sollst das Bild im Template einfügen (so wie ich in #9 beschrieben habe), dann deine Startseite öffnen, den Seitenquelltext anzeigen lassen (im FireFox durch Strg + U; im IE durch F12), alles kopieren und den gesamten Code hier posten.
 
Da ich nicht über 10000 Buchstaben posten kann, der Quellcode in mehreren Teilen:

HTML:
<!DOCTYPE html>
<html dir="ltr" lang="de-DE">
<head>
<meta charset="UTF-8" />
<title>Kurtgefasst</title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="http://kurtgefasst.de/wp-content/themes/twentyten/style.css" />
<link rel="pingback" href="http://kurtgefasst.de/xmlrpc.php" />
<link rel="alternate" type="application/rss+xml" title="Kurtgefasst &raquo; Feed" href="http://kurtgefasst.de/feed/" />
<link rel="alternate" type="application/rss+xml" title="Kurtgefasst &raquo; Kommentar Feed" href="http://kurtgefasst.de/comments/feed/" />
<link rel='stylesheet' id='admin-bar-css'  href='http://kurtgefasst.de/wp-includes/css/admin-bar.css?ver=20110122' type='text/css' media='all' />
<link rel='stylesheet' id='wp-polls-css'  href='http://kurtgefasst.de/wp-content/plugins/wp-polls/polls-css.css?ver=2.50' type='text/css' media='all' />
<link rel='stylesheet' id='contact-form-7-css'  href='http://kurtgefasst.de/wp-content/plugins/contact-form-7/styles.css?ver=2.4.4' type='text/css' media='all' />
<script type='text/javascript' src='http://kurtgefasst.de/wp-includes/js/l10n.js?ver=20101110'></script>
<script type='text/javascript' src='http://kurtgefasst.de/wp-includes/js/jquery/jquery.js?ver=1.4.4'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://kurtgefasst.de/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://kurtgefasst.de/wp-includes/wlwmanifest.xml" />
<link rel='index' title='Kurtgefasst' href='http://kurtgefasst.de/' />
<meta name="generator" content="WordPress 3.1" />
<style type="text/css">
.wp-polls .pollbar {
    margin: 1px;
    font-size: 6px;
    line-height: 8px;
    height: 8px;
    background-image: url('http://kurtgefasst.de/wp-content/plugins/wp-polls/images/default/pollbg.gif');
    border: 1px solid #c8c8c8;
}
</style>
<style type="text/css">
body { background-color: #ffffff; }
</style>
<style type="text/css" media="print">#wpadminbar { display:none; }</style>
<style type="text/css">
    html { margin-top: 28px !important; }
    * html body { margin-top: 28px !important; }
</style>
</head>

<body class="home blog logged-in admin-bar">
<div id="wrapper" class="hfeed">
<div id="header">
<div id="masthead">
<div id="branding" role="banner">
<h1 id="site-title">
<span>
<a href="http://kurtgefasst.de/" title="Kurtgefasst" rel="home"><img src="http://kurtgefasst.de/wp-content/uploads/LOGO.png" alt="Header" /></a>
</span>
</h1>
<div id="site-description"></div>

</div><!-- #branding -->

<div id="access" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Springe zum Inhalt">Springe zum Inhalt</a></div>
<div class="menu"><ul><li class="current_page_item"><a href="http://kurtgefasst.de/" title="Home">Home</a></li></ul></div>
</div><!-- #access -->
</div><!-- #masthead -->
</div><!-- #header -->

<div id="main">
        <div id="container">
            <div id="content" role="main">

            




            <div id="post-47" class="post-47 post type-post status-publish format-standard hentry category-aus-dem-netz tag-bruce tag-iron tag-lee tag-man tag-video">
            <h2 class="entry-title"><a href="http://kurtgefasst.de/aus-dem-netz/bruce-lee-vs-iron-man/" title="Permalink zu Bruce Lee vs. Iron Man" rel="bookmark">Bruce Lee vs. Iron Man</a></h2>

            <div class="entry-meta">
                <span class="meta-prep meta-prep-author">Publiziert am</span> <a href="http://kurtgefasst.de/aus-dem-netz/bruce-lee-vs-iron-man/" title="18:40" rel="bookmark"><span class="entry-date">28. Februar 2011</span></a> <span class="meta-sep">von</span> <span class="author vcard"><a class="url fn n" href="http://kurtgefasst.de/author/admin/" title="Zeige alle Beiträge von admin">admin</a></span>            </div><!-- .entry-meta -->

                <div class="entry-content">
                <p>Da ich vom Hobby her “Stop Motion” Filme bzw. Videos liebe, teile ich euch jetzt mal einen Favoriten von mir. Das ganze Video besteht eigentlich nur aus einer Digital Kamera, Adobe After Effects und zwei Action Figuren.<br />
Das erstaunliche ist: 1 Minute Filmmaterial besteht aus ca. 10000 Einzelaufnahmen! Da hatte der Produzent wohl viel Geduld <img src='http://kurtgefasst.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><span class="youtube">
<object width="425" height="344">
<param name="movie" value="http://www.youtube.com/v/Ywu1DeqXTg4?color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&amp;rel=0&amp;feature=player_embedded" />
<param name="allowFullScreen" value="true" />
<param name="allowscriptaccess" value="always">
<embed src="http://www.youtube.com/v/Ywu1DeqXTg4?color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&amp;rel=0&amp;feature=player_embedded" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="425" height="344"></embed>
</object>
</span></p>
                            </div><!-- .entry-content -->
    
            <div class="entry-utility">
                                    <span class="cat-links">
                        <span class="entry-utility-prep entry-utility-prep-cat-links">Veröffentlicht unter</span> <a href="http://kurtgefasst.de/category/aus-dem-netz/" title="Alle Artikel in Aus dem Netz ansehen" rel="category tag">Aus dem Netz</a>                    </span>
                    <span class="meta-sep">|</span>
                                                    <span class="tag-links">
                        <span class="entry-utility-prep entry-utility-prep-tag-links">Verschlagwortet mit</span> <a href="http://kurtgefasst.de/tag/bruce/" rel="tag">bruce</a>, <a href="http://kurtgefasst.de/tag/iron/" rel="tag">iron</a>, <a href="http://kurtgefasst.de/tag/lee/" rel="tag">lee</a>, <a href="http://kurtgefasst.de/tag/man/" rel="tag">man</a>, <a href="http://kurtgefasst.de/tag/video/" rel="tag">video</a>                    </span>
                    <span class="meta-sep">|</span>
                                <span class="comments-link"><a href="http://kurtgefasst.de/aus-dem-netz/bruce-lee-vs-iron-man/#comments" title="Kommentiere Bruce Lee vs. Iron Man">7 Kommentare</a></span>
                <span class="meta-sep">|</span> <span class="edit-link"><a class="post-edit-link" href="http://kurtgefasst.de/wp-admin/post.php?post=47&amp;action=edit" title="Artikel bearbeiten">Bearbeiten</a></span>            </div><!-- .entry-utility -->
        </div><!-- #post-## -->

        
    


            <div id="post-34" class="post-34 post type-post status-publish format-standard hentry category-kurtgefasst-de tag-lernen">
            <h2 class="entry-title"><a href="http://kurtgefasst.de/kurtgefasst-de/da-habe-ich-mir-was-vorgenommen/" title="Permalink zu Da habe ich mir was vorgenommen" rel="bookmark">Da habe ich mir was vorgenommen</a></h2>

            <div class="entry-meta">
                <span class="meta-prep meta-prep-author">Publiziert am</span> <a href="http://kurtgefasst.de/kurtgefasst-de/da-habe-ich-mir-was-vorgenommen/" title="14:30" rel="bookmark"><span class="entry-date">27. Februar 2011</span></a> <span class="meta-sep">von</span> <span class="author vcard"><a class="url fn n" href="http://kurtgefasst.de/author/admin/" title="Zeige alle Beiträge von admin">admin</a></span>            </div><!-- .entry-meta -->

                <div class="entry-content">
                <p>Ich hocke jetzt ausschließlich fast nur noch vor dem PC bzw. Mac. Der Grund dafür ist das ich plötzlich so “lerngierig” geworden bin. Noch vor 2 Monaten hatte ich mir vorgenommen Adobe Flash zu können und zu lernen. Doch da alles aufeinander basiert muss ich auch Adobe After Effects, Scripten, Adobe Illustrator und und und können.</p>
<p>Ich weiß gar nicht wie ich mit all den Sachen anfangen soll. Doch zum glück habe ich ja die ganzen tollen Foren über Design und Video <img src='http://kurtgefasst.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Also dene, muss wieder zurück zum lernen <img src='http://kurtgefasst.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
                            </div><!-- .entry-content -->
    
            <div class="entry-utility">
                                    <span class="cat-links">
                        <span class="entry-utility-prep entry-utility-prep-cat-links">Veröffentlicht unter</span> <a href="http://kurtgefasst.de/category/kurtgefasst-de/" title="Alle Artikel in Kurtgefasst.de ansehen" rel="category tag">Kurtgefasst.de</a>                    </span>
                    <span class="meta-sep">|</span>
                                                    <span class="tag-links">
                        <span class="entry-utility-prep entry-utility-prep-tag-links">Verschlagwortet mit</span> <a href="http://kurtgefasst.de/tag/lernen/" rel="tag">lernen</a>                    </span>
                    <span class="meta-sep">|</span>
                                <span class="comments-link"><a href="http://kurtgefasst.de/kurtgefasst-de/da-habe-ich-mir-was-vorgenommen/#comments" title="Kommentiere Da habe ich mir was vorgenommen">7 Kommentare</a></span>
                <span class="meta-sep">|</span> <span class="edit-link"><a class="post-edit-link" href="http://kurtgefasst.de/wp-admin/post.php?post=34&amp;action=edit" title="Artikel bearbeiten">Bearbeiten</a></span>            </div><!-- .entry-utility -->
        </div><!-- #post-## -->
 
HTML:
            <div id="post-28" class="post-28 post type-post status-publish format-standard hentry category-kurioses tag-gaddafi tag-leibgarde">
            <h2 class="entry-title"><a href="http://kurtgefasst.de/kurioses/gaddafi-unter-jungfrauenschutz/" title="Permalink zu Gaddafi unter “Jungfrauenschutz”" rel="bookmark">Gaddafi unter “Jungfrauenschutz”</a></h2>

            <div class="entry-meta">
                <span class="meta-prep meta-prep-author">Publiziert am</span> <a href="http://kurtgefasst.de/kurioses/gaddafi-unter-jungfrauenschutz/" title="21:52" rel="bookmark"><span class="entry-date">26. Februar 2011</span></a> <span class="meta-sep">von</span> <span class="author vcard"><a class="url fn n" href="http://kurtgefasst.de/author/admin/" title="Zeige alle Beiträge von admin">admin</a></span>            </div><!-- .entry-meta -->
                <div class="entry-content">
                <p>Ich beschäftige mich auf diesem Blog nicht über Politik, das ist schon klar. Doch das was ich jetzt schreibe hat nichts mehr mit Politik zu tun. Es ist ja bekannt das der Diktator Gaddafi große Lust an Kuriosität hat, doch so kurios und verrückt ist kein anderer <img src='http://kurtgefasst.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Denn wer sonnst zieht außer Gaddafi mit 40 Jungfrauen als Leibgarde durch die Stadt? Bei Gaddafis Leibgarde handelt es sich um 40 ausgewählte Spezialeinheiten, welche nebenbei auch ihre Jungfräulichkeit erhalten müssen. Verrückt, einfach nur verrückt. Wie kommt denn ein normaler Mensch überhaupt auf so eine Idee?!</p>
<p><a href="http://kurtgefasst.de/wp-content/uploads/17.jpg"><img class="alignnone size-medium wp-image-29" title="gaddafi-leibgarde" src="http://kurtgefasst.de/wp-content/uploads/17-300x233.jpg" alt="Gaddafi Leibgarde" width="300" height="233" /></a></p>
<p>&nbsp;</p>
                            </div><!-- .entry-content -->
    
            <div class="entry-utility">
                                    <span class="cat-links">
                        <span class="entry-utility-prep entry-utility-prep-cat-links">Veröffentlicht unter</span> <a href="http://kurtgefasst.de/category/kurioses/" title="Alle Artikel in Kurioses ansehen" rel="category tag">Kurioses</a>                    </span>
                    <span class="meta-sep">|</span>
                                                    <span class="tag-links">
                        <span class="entry-utility-prep entry-utility-prep-tag-links">Verschlagwortet mit</span> <a href="http://kurtgefasst.de/tag/gaddafi/" rel="tag">gaddafi</a>, <a href="http://kurtgefasst.de/tag/leibgarde/" rel="tag">leibgarde</a>                    </span>
                    <span class="meta-sep">|</span>
                                <span class="comments-link"><a href="http://kurtgefasst.de/kurioses/gaddafi-unter-jungfrauenschutz/#comments" title="Kommentiere Gaddafi unter “Jungfrauenschutz”">2 Kommentare</a></span>
                <span class="meta-sep">|</span> <span class="edit-link"><a class="post-edit-link" href="http://kurtgefasst.de/wp-admin/post.php?post=28&amp;action=edit" title="Artikel bearbeiten">Bearbeiten</a></span>            </div><!-- .entry-utility -->
        </div><!-- #post-## -->

        
    


            <div id="post-23" class="post-23 post type-post status-publish format-standard hentry category-aus-dem-netz tag-erdrotationsmesser tag-move tag-playstation">
            <h2 class="entry-title"><a href="http://kurtgefasst.de/aus-dem-netz/playstation-goes-physics/" title="Permalink zu Playstation goes Physics" rel="bookmark">Playstation goes Physics</a></h2>

            <div class="entry-meta">
                <span class="meta-prep meta-prep-author">Publiziert am</span> <a href="http://kurtgefasst.de/aus-dem-netz/playstation-goes-physics/" title="12:17" rel="bookmark"><span class="entry-date">26. Februar 2011</span></a> <span class="meta-sep">von</span> <span class="author vcard"><a class="url fn n" href="http://kurtgefasst.de/author/admin/" title="Zeige alle Beiträge von admin">admin</a></span>            </div><!-- .entry-meta -->

                <div class="entry-content">
                <p>Was entsteht wenn man eine Sony Playstation Move und einen alten Plattenspieler zusammenbaut? Natürlich ein Erdrotationsmesser!</p>
<p>Hier hat ein sehr genialer Bastler wirklich aus einer Playstaion Move und einem Plattenspieler ein Gerät gebaut, mit dem sich die Erdrotation messen lässt: <a href="http://www.pabr.org/copernitron/copernitron.en.html">Homodyne measurement of Earth’s rotation with a motion-sensing videogame controller and a record player</a></p>
<p><a href="http://kurtgefasst.de/wp-content/uploads/perspective.jpg"><img class="alignnone size-medium wp-image-24" title="playstationmove-rotationsmesser" src="http://kurtgefasst.de/wp-content/uploads/perspective-259x300.jpg" alt="PlaystationMove Erdrotationsmesser" width="259" height="300" /></a></p>
                            </div><!-- .entry-content -->
    
            <div class="entry-utility">
                                    <span class="cat-links">
                        <span class="entry-utility-prep entry-utility-prep-cat-links">Veröffentlicht unter</span> <a href="http://kurtgefasst.de/category/aus-dem-netz/" title="Alle Artikel in Aus dem Netz ansehen" rel="category tag">Aus dem Netz</a>                    </span>
                    <span class="meta-sep">|</span>
                                                    <span class="tag-links">
                        <span class="entry-utility-prep entry-utility-prep-tag-links">Verschlagwortet mit</span> <a href="http://kurtgefasst.de/tag/erdrotationsmesser/" rel="tag">erdrotationsmesser</a>, <a href="http://kurtgefasst.de/tag/move/" rel="tag">move</a>, <a href="http://kurtgefasst.de/tag/playstation/" rel="tag">playstation</a>                    </span>
                    <span class="meta-sep">|</span>
                                <span class="comments-link"><a href="http://kurtgefasst.de/aus-dem-netz/playstation-goes-physics/#respond" title="Kommentiere Playstation goes Physics">Hinterlasse einen Kommentar</a></span>
                <span class="meta-sep">|</span> <span class="edit-link"><a class="post-edit-link" href="http://kurtgefasst.de/wp-admin/post.php?post=23&amp;action=edit" title="Artikel bearbeiten">Bearbeiten</a></span>            </div><!-- .entry-utility -->
        </div><!-- #post-## -->
 
Werbung:
HTML:
            <div id="post-9" class="post-9 post type-post status-publish format-standard hentry category-kurtgefasst-de tag-kurtgefasst tag-wartemodus">
            <h2 class="entry-title"><a href="http://kurtgefasst.de/kurtgefasst-de/noch-nicht-so-weit/" title="Permalink zu Noch nicht so weit" rel="bookmark">Noch nicht so weit</a></h2>
            <div class="entry-meta">
                <span class="meta-prep meta-prep-author">Publiziert am</span> <a href="http://kurtgefasst.de/kurtgefasst-de/noch-nicht-so-weit/" title="18:21" rel="bookmark"><span class="entry-date">25. Februar 2011</span></a> <span class="meta-sep">von</span> <span class="author vcard"><a class="url fn n" href="http://kurtgefasst.de/author/admin/" title="Zeige alle Beiträge von admin">admin</a></span>            </div><!-- .entry-meta -->

                <div class="entry-content">
                <p>Vorerst möchte ich mich bei allen wegen der “leerheit” des Blogs entschuldigen. Doch Kurtgefasst.de ist gerade mal einen Tag alt, weshalb ich noch nicht so viel hinbekommen habe.</p>
<p>Dieses mal möchte ich nicht den gleichen Fehler wie beim ersten Blog machen. Da habe ich mich nämlich am Anfang um das Aussehen gar nicht gekümmert, hatte aber dann später viel Stress am Hals. Da man auch aus Fehlern lernt werde ich bei Kurtgefasst zuerst das Design ein bisschen auf die Beine stellen. Das heißt nicht das ich jetzt lange nicht schreiben werde, sondern höchstens ein Wochenende nicht <img src='http://kurtgefasst.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Das schaffen wir schon… Hoffentlich.</p>
<p>Kurt</p>
                            </div><!-- .entry-content -->
    
            <div class="entry-utility">
                                    <span class="cat-links">
                        <span class="entry-utility-prep entry-utility-prep-cat-links">Veröffentlicht unter</span> <a href="http://kurtgefasst.de/category/kurtgefasst-de/" title="Alle Artikel in Kurtgefasst.de ansehen" rel="category tag">Kurtgefasst.de</a>                    </span>
                    <span class="meta-sep">|</span>
                                                    <span class="tag-links">
                        <span class="entry-utility-prep entry-utility-prep-tag-links">Verschlagwortet mit</span> <a href="http://kurtgefasst.de/tag/kurtgefasst/" rel="tag">kurtgefasst</a>, <a href="http://kurtgefasst.de/tag/wartemodus/" rel="tag">wartemodus</a>                    </span>
                    <span class="meta-sep">|</span>
                                <span class="comments-link"><a href="http://kurtgefasst.de/kurtgefasst-de/noch-nicht-so-weit/#respond" title="Kommentiere Noch nicht so weit">Hinterlasse einen Kommentar</a></span>
                <span class="meta-sep">|</span> <span class="edit-link"><a class="post-edit-link" href="http://kurtgefasst.de/wp-admin/post.php?post=9&amp;action=edit" title="Artikel bearbeiten">Bearbeiten</a></span>            </div><!-- .entry-utility -->
        </div><!-- #post-## -->

        
    


            <div id="post-6" class="post-6 post type-post status-publish format-standard hentry category-kurtgefasst-de tag-blog tag-kurtgefasst">
            <h2 class="entry-title"><a href="http://kurtgefasst.de/kurtgefasst-de/kurtgefasst-de-ist-online/" title="Permalink zu Kurtgefasst.de ist online!" rel="bookmark">Kurtgefasst.de ist online!</a></h2>

            <div class="entry-meta">
                <span class="meta-prep meta-prep-author">Publiziert am</span> <a href="http://kurtgefasst.de/kurtgefasst-de/kurtgefasst-de-ist-online/" title="16:58" rel="bookmark"><span class="entry-date">25. Februar 2011</span></a> <span class="meta-sep">von</span> <span class="author vcard"><a class="url fn n" href="http://kurtgefasst.de/author/admin/" title="Zeige alle Beiträge von admin">admin</a></span>            </div><!-- .entry-meta -->

                <div class="entry-content">
                <p>Der Gedanke an einen zweiten Blog klaute mir jede Nacht den Schlaf.</p>
<p>Doch jetzt endlich ist es soweit, denn “Kurtgefasst.de” ist online! Dass aber noch alles sehr leer und schlecht aussieht ist ganz normal. Immerhin ist mein Blog gerade mal 1 Stunde alt.</p>
<p>Aber bevor ich etwas über Kurtgefasst schreibe, möchte ich euch über “Politikgott” informieren. Wie einige von euch vielleicht wissen ist das hier nicht mein erster Blog. Ich schreibe schon seit einigen Monaten auf http://www.politikgott.de Blogartikel. Wie der Name schon sagt geht es auf Politikgott eher um Politik.</p>
<p>Ich selber bin aber eben nicht nur an politischen Themen interessiert. Da ich aber die ganzen verschiedenen Themen nicht auf einem Politikblog durchmixen wollte, habe ich jetzt “Kurtgefasst” ins Netz gestellt.</p>
<p>Ich hoffe auf eure Unterstützung und eine tolle Zukunft!</p>
<p>Grüße Kurt<br />
</p>
                            </div><!-- .entry-content -->
    
            <div class="entry-utility">
                                    <span class="cat-links">
                        <span class="entry-utility-prep entry-utility-prep-cat-links">Veröffentlicht unter</span> <a href="http://kurtgefasst.de/category/kurtgefasst-de/" title="Alle Artikel in Kurtgefasst.de ansehen" rel="category tag">Kurtgefasst.de</a>                    </span>
                    <span class="meta-sep">|</span>
                                                    <span class="tag-links">
                        <span class="entry-utility-prep entry-utility-prep-tag-links">Verschlagwortet mit</span> <a href="http://kurtgefasst.de/tag/blog/" rel="tag">blog</a>, <a href="http://kurtgefasst.de/tag/kurtgefasst/" rel="tag">kurtgefasst</a>                    </span>
                    <span class="meta-sep">|</span>
                                <span class="comments-link"><a href="http://kurtgefasst.de/kurtgefasst-de/kurtgefasst-de-ist-online/#respond" title="Kommentiere Kurtgefasst.de ist online!">Hinterlasse einen Kommentar</a></span>
                <span class="meta-sep">|</span> <span class="edit-link"><a class="post-edit-link" href="http://kurtgefasst.de/wp-admin/post.php?post=6&amp;action=edit" title="Artikel bearbeiten">Bearbeiten</a></span>            </div><!-- .entry-utility -->
        </div><!-- #post-## -->

        
    

            </div><!-- #content -->
        </div><!-- #container -->


        <div id="primary" class="widget-area" role="complementary">
            <ul class="xoxo">

<li id="text-3" class="widget-container widget_text">            <div class="textwidget"><a href="http://feeds.feedburner.com/Kurtgefasst"><img src="http://www.kurtgefasst.de/rss.png" title="RSS" /></a></a> <a href="http://twitter.com/#!/Kurtgefasst"><img src="http://www.kurtgefasst.de/twitter.png" title="Twitter" /></a></div>
        </li><li id="categories-5" class="widget-container widget_categories"><h3 class="widget-title">Themen</h3>        <ul>
    <li class="cat-item cat-item-6"><a href="http://kurtgefasst.de/category/aus-dem-netz/" title="Alle unter Aus dem Netz abgelegten Artikel ansehen">Aus dem Netz</a> (2)
</li>
    <li class="cat-item cat-item-12"><a href="http://kurtgefasst.de/category/kurioses/" title="Alle unter Kurioses abgelegten Artikel ansehen">Kurioses</a> (1)
</li>
    <li class="cat-item cat-item-1"><a href="http://kurtgefasst.de/category/kurtgefasst-de/" title="Alle unter Kurtgefasst.de abgelegten Artikel ansehen">Kurtgefasst.de</a> (3)
</li>
        </ul>
</li>            </ul>
        </div><!-- #primary .widget-area -->

    </div><!-- #main -->

    <div id="footer" role="contentinfo">
        <div id="colophon">
 
HTML:
<div id="site-info">
                <a href="http://kurtgefasst.de/" title="Kurtgefasst" rel="home">
                    Kurtgefasst                </a>
            </div><!-- #site-info -->

            

        </div><!-- #colophon -->
    </div><!-- #footer -->

</div><!-- #wrapper -->

<script type='text/javascript' src='http://kurtgefasst.de/wp-includes/js/admin-bar.js?ver=20110131'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var pollsL10n = {
    ajax_url: "http://kurtgefasst.de/wp-content/plugins/wp-polls/wp-polls.php",
    text_wait: "Your last request is still being processed. Please wait a while ...",
    text_valid: "Please choose a valid poll answer.",
    text_multiple: "Maximum number of choices allowed: ",
    show_loading: "1",
    show_fading: "1"
};
/* ]]> */
</script>
<script type='text/javascript' src='http://kurtgefasst.de/wp-content/plugins/wp-polls/polls-js.js?ver=2.50'></script>
<script type='text/javascript' src='http://kurtgefasst.de/wp-content/plugins/contact-form-7/jquery.form.js?ver=2.52'></script>
<script type='text/javascript' src='http://kurtgefasst.de/wp-content/plugins/contact-form-7/scripts.js?ver=2.4.4'></script>
        <div id="wpadminbar">
            <div class="quicklinks">
                <ul>
                                                    
        <li id="wp-admin-bar-my-account-with-avatar" class="menupop">
            <a href="http://kurtgefasst.de/wp-admin/profile.php"><span><img alt='' src='http://1.gravatar.com/avatar/92602fde73f016bebcd5f74a922360d6?s=16&amp;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D16&amp;r=X' class='avatar avatar-16 photo' height='16' width='16' />admin</span></a>

                        <ul>
                                            
        <li id="wp-admin-bar-profil-bearbeiten" class="">
            <a href="http://kurtgefasst.de/wp-admin/profile.php">Profil bearbeiten</a>
            
                    </li>                                            
        <li id="wp-admin-bar-dashboard" class="">
            <a href="http://kurtgefasst.de/wp-admin/">Dashboard</a>

            
                    </li>                                            
        <li id="wp-admin-bar-abmelden" class="">
            <a href="http://kurtgefasst.de/wp-login.php?action=logout&_wpnonce=3d190c88f2">Abmelden</a>

            
                    </li>                            </ul>
            
                    </li>                                                    
        <li id="wp-admin-bar-new-content" class="menupop">
            <a href="http://kurtgefasst.de/wp-admin/post-new.php?post_type=post"><span>Hinzufügen</span></a>

                        <ul>
                                            
        <li id="wp-admin-bar-new-post" class="">
            <a href="http://kurtgefasst.de/wp-admin/post-new.php?post_type=post">Artikel</a>

            
                    </li>                                            
        <li id="wp-admin-bar-new-page" class="">
            <a href="http://kurtgefasst.de/wp-admin/post-new.php?post_type=page">Seite</a>

            
                    </li>                            </ul>
            
                    </li>                                                    
        <li id="wp-admin-bar-comments" class="">
            <a href="http://kurtgefasst.de/wp-admin/edit-comments.php">Kommentare </a>

            
                    </li>                                                    
        <li id="wp-admin-bar-appearance" class="menupop">
            <a href="http://kurtgefasst.de/wp-admin/themes.php"><span>Design</span></a>

                        <ul>
                                            
        <li id="wp-admin-bar-widgets" class="">
            <a href="http://kurtgefasst.de/wp-admin/widgets.php">Widgets</a>

            
                    </li>                                            
        <li id="wp-admin-bar-menus" class="">
            <a href="http://kurtgefasst.de/wp-admin/nav-menus.php">Menüs</a>
            
                    </li>                            </ul>
            
                    </li>                                    </ul>
            </div>

            <div id="adminbarsearch-wrap">
                <form action="http://kurtgefasst.de" method="get" id="adminbarsearch">
                    <input class="adminbar-input" name="s" id="adminbar-search" type="text" value="" maxlength="150" />
                    <input type="submit" class="adminbar-button" value="Suchen"/>
                </form>
            </div>
        </div>

        <!-- Piwik -->
<script type="text/javascript">
var pkBaseURL = (("https:" == document.location.protocol) ? "https://kurtgefasst.de/piwik/" : "http://kurtgefasst.de/piwik/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
</script><script type="text/javascript">
try {
var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", 1);
piwikTracker.trackPageView();
piwikTracker.enableLinkTracking();
} catch( err ) {}
</script><noscript><p><img src="http://kurtgefasst.de/piwik/piwik.php?idsite=1" style="border:0" alt="" /></p></noscript>
<!-- End Piwik Tracking Tag -->

</body>
</html>
 
Der Pfad passt, das Bild ist ebenfals in Ordnung. Ich habe deinen Code - wie er ist - getestet und es hat alles geklappt. Am Code und am Bild liegt es nicht. Vielleicht lädt dein Browser das Cache nicht neu?
 
Werbung:
Werbung:
Wie im Bild kommt zwar der Header, jedoch nicht so wie ich es will. Ich möchte einfach dass es ohne schwarzen Rahmen erscheint, dafür habe cih es sogar als PNG Bild :(
 
Zurück
Oben