Beiträge von reap705

    Ändere in der style.css mal folgendes

    Der Hintergrund der Bilddatei "ico_search.png" ist allerdings nicht transparent. Da musste noch mal ran :wink:

    Mein Problem ist, dass ich nicht so recht weiß wo ich das Update her bekomme.

    Schau mal auf oben rechts. Auf der Menüleiste findest du den Link.

    Lad dir die Zip-Datei herunter und anschließend entpacken. Mit einem FTP-Client wählst du dich auf deinem Webserver ein und kopierst die Dateien einfach über die bestehenden.

    Vorher Sicherung der Datenbank und der WordPress-Installation nicht vergessen.

    Liegt nicht am Safari. Wird von jedem Browser so dargestellt, wenn du eine geringe Seitenbreite und dadurch einen Zeilenumbruch hast.

    Pass in der style.css mal folgendes an:

    Code
    [FONT=Consolas].[/FONT][FONT=Consolas]singular[/FONT][FONT=Consolas] .[/FONT][FONT=Consolas]entry-title[/FONT][FONT=Consolas] {[/FONT][COLOR=#000000][FONT=Consolas]    
    color: #000;[/FONT][/COLOR]
    [COLOR=#000000][FONT=Consolas]font-size: 16px;[/FONT][/COLOR]
    [COLOR=#000000][FONT=Consolas]font-weight: bold;[/FONT][/COLOR]
    [COLOR=#000000][FONT=Consolas][COLOR=#ff0000]line-height: 28px;[/COLOR][/FONT][/COLOR]
    [COLOR=#000000][FONT=Consolas]}[/FONT][/COLOR]

    Kannst du quasi einfügen, wo du willst. Wichtig ist nach dem

    PHP
    <?php

    am Anfang und vor dem

    Code
    ?>

    am Ende. Und nicht in eine vorhandene Funktion einfügen.

    Ich würde es ganz am Ende einfügen.

    Denk auch an den entsprechenden Aufruf im Header

    PHP
    <img src="<?php header_image(); ?>" height="<?php echo get_custom_header()->height; ?>" width="<?php echo get_custom_header()->width; ?>" alt="" />

    Ruf mal die Startseite auf und schau mal in den Quelltext.

    Da findest du so was in der Art:

    Code
    [COLOR=#881280][FONT=monospace]<div [/FONT][/COLOR][FONT=monospace]class[/FONT][COLOR=#881280][FONT=monospace]="[/FONT][/COLOR][FONT=monospace]post[/FONT][COLOR=#881280][FONT=monospace]" [/FONT][/COLOR][FONT=monospace]id[/FONT][COLOR=#881280][FONT=monospace]="[/FONT][/COLOR][FONT=monospace]post-68[/FONT][COLOR=#881280][FONT=monospace]">[/FONT][/COLOR]

    Merk dir die ID und füg in deinem Stylesheet folgendes hinzu:

    Code
    .post#post-68 .title {
    display: none;
    }

    Edit: Ups, da war jemand schneller

    Probiers mal mit der Klasse "wp-post-image":

    Code
    [COLOR=#000000][FONT=Consolas]#[/FONT][/COLOR][COLOR=#000000][FONT=Consolas]content .wp-post-image[/FONT][/COLOR][COLOR=#000000][FONT=Consolas] {[/FONT][/COLOR][COLOR=#000000][FONT=Consolas]    
    [COLOR=#C80000]margin[/COLOR]: [COLOR=#3200FF]0[/COLOR];[/FONT][/COLOR]
    [COLOR=#000000][FONT=Consolas][COLOR=#C80000]height[/COLOR]: [COLOR=#07909A]auto[/COLOR];[/FONT][/COLOR]
    [COLOR=#000000][FONT=Consolas][COLOR=#C80000]max-width[/COLOR]: [COLOR=#3200FF]240px[/COLOR];[/FONT][/COLOR]
    [COLOR=#000000][FONT=Consolas][COLOR=#C80000]width[/COLOR]: [COLOR=#07909A]auto[/COLOR];[/FONT][/COLOR]
    [COLOR=#000000][FONT=Consolas]}[/FONT][/COLOR]

    Wenn du aus der Klasse eine ID machst, klappt das:

    Code
    [LEFT][COLOR=#007700][FONT=monospace].[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]footer a [/FONT][/COLOR][COLOR=#007700][FONT=monospace]{
        [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]color[/FONT][/COLOR][COLOR=#007700][FONT=monospace]: [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]FF006E[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
    }  [/FONT][/COLOR][/LEFT]
    Code
    [LEFT][FONT=monospace][COLOR=#007700]#[/COLOR][/FONT][COLOR=#0000BB][FONT=monospace]footer a [/FONT][/COLOR][COLOR=#007700][FONT=monospace]{
        [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]color[/FONT][/COLOR][COLOR=#007700][FONT=monospace]: [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]FF006E[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
    }  [/FONT][/COLOR][/LEFT]

    Ist ein Hintergrundbild. Wird in der green.css aufgerufen:

    [COLOR=#000000][FONT=Consolas].footer-container {[/FONT][/COLOR]
    [COLOR=#000000][FONT=Consolas] [COLOR=#C80000]background[/COLOR]:[COLOR=#07909A]url[/COLOR](../images/footer-bg.png);[/FONT][/COLOR]
    [FONT=Consolas][COLOR=#000000]}

    [/COLOR][/FONT]Für einen weißen Hintergrund änderst du:[FONT=Consolas][COLOR=#000000]

    .footer-container {[/COLOR]
    [COLOR=#000000] [COLOR=#C80000]width[/COLOR]: [COLOR=#3200FF]958px[/COLOR];[/COLOR]
    [COLOR=#000000] [COLOR=#C80000]border-right[/COLOR]: [COLOR=#3200FF]1px[/COLOR] [COLOR=#07909A]solid[/COLOR] [COLOR=#07909A]#d5d5d5[/COLOR];[/COLOR]
    [COLOR=#000000] [COLOR=#C80000]border-left[/COLOR]: [COLOR=#3200FF]1px[/COLOR] [COLOR=#07909A]solid[/COLOR] [COLOR=#07909A]#d5d5d5[/COLOR];[/COLOR]
    [COLOR=#000000]}[/COLOR]
    [/FONT]

    Sorry, war ich zu fix. Irgendwo kommt dieser Aufruf her:

    [COLOR=#000000][FONT=monospace]#content { width:64%;float:right;margin:0 17.5% 0 -95%;display:block;}

    Setz da mal den Außenabstand auf 0:

    [/FONT][/COLOR][COLOR=#000000][FONT=monospace]#content { width:64%;float:right;margin:0;display:block;}[/FONT][/COLOR][COLOR=#000000][FONT=monospace]
    [/FONT][/COLOR]

    Füg den Code ganz am Ende vor dem abschließenden

    Code
    ?>

    ein.

    Code
    /*----------------------------------*/
    /* Sidebar                          */
    /*----------------------------------*/
    
    
    if ( function_exists('register_sidebar') )
    register_sidebar();
    
    
    ?>

    Wenn du eine Sidebar im Header möchtest, dann ist die header.php der richtige Platz. Du solltest die Sidebar allerdings in deinem Stylesheet entsprechend formatieren:

    Code
    #sidebar {
    ...
    }

    Mit

    PHP
    <div id="sidebar">
    <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar() ) : ?> 
    </div>

    in der header.php gibst du diese dann aus.