Beiträge von Tutrix

    ImStyle (style.css Zeile 115)

    Code
    h1 {
       [COLOR=Red] font-family: Georgia,Verdana,Arial,Sans-Serif;[/COLOR]
       [COLOR=Red] font-size: 4em;[/COLOR]
        font-weight: normal;
        text-align: center;
    }

    hier die Schriftart und Größe ändern

    Beauty, Lifestyle & more (style.css Zeile 122)

    Code
    #headerimg .description {
       [COLOR=Red] font-size: 1.2em;[/COLOR]
        margin-top: 5px;
        text-align: center;
    }

    hier noch deine gewünschte Schriftart hinzufügen

    Also bei mir funktioniert das Menü ganz normal, einen visuellen Abstand kann ich auch nicht feststellen.
    ( IE und FF )

    Hast du es schon mal einen anderen Browser getestet? Vielleicht hast ja da was verstellt, z.B. Zoom.

    Zitat des Autors

    Zitat

    Hi, This issue has been fixed.

    You can download version 1.5.4 by using the same download link from when you first purchased the theme.

    I will send out an official update email announcing the update once I run a few more tests and see if there are any more new 3.1 features I can include in another update

    also einfach neue Version downloaden

    Kenne das Theme jetzt nicht, gibt es da vielleicht Einstellungen was die Bildanzeige betrifft?

    weil in der style.css Zeile 263 steht dies

    Code
    .single .hentry .post-image-container img {
        [COLOR=Red]display: none;[/COLOR]
    
    
    
    
    }

    gehe ja mal davon aus, das du dies nicht selbst da rein geschrieben hast :mrgreen:

    also entweder Einstellung ändern(wenn vorhanden) oder das [COLOR=Red]display: none;[/COLOR] löschen und schon ist das Bild wieder sichtbar

    ändere mal bei den beiden Codeteilen ein paar Zeilen darüber das

    Code
    [COLOR=#000000]<div class="post"><!--post-->[/COLOR]

    in

    Code
    [COLOR=#000000]<div class="post index-img"><!--post-->[/COLOR]

    und füge in die style.css dies ein

    Code
    .index-img .wp-caption {
        font-size: 8px;
        padding: 5px;
        max-width: 125px;
    }
    .index-img img {
        max-width: 120px;
        max-height: 120px;
    }

    die Pixelangaben kannst natürlich nach belieben anpassen

    default.css Zeile 178

    Code
    .single .post .entry-info, .single-post .entry-info {
       [COLOR=Red] border-bottom: 1px dotted #CCCCCC;[/COLOR]
        color: #848485;
        font-size: 11px;
        text-transform: uppercase;
    }

    base.css Zeile157

    Code
    .entry-content {
        font-size: 12px;
        line-height: 0.3em;
        margin: [COLOR=Red]10px[/COLOR] 0;
        overflow: hidden;
    }

    den Code oben ändern in

    Code
    .wp-caption, alignleft {
        float: left;
        margin-right: 15px;
        background-color: #e4e4e4;
        padding: 5px;
        border: 1px solid #CCCCCC;
        -moz-border-radius: 5px;
        -khtml-border-radius: 5px;
        font-style: italic;
    }
    PHP
    <?php
    /*
    Template Name: designerpage
    */
    ?>

    und dieses Template hast du dann auch "designerpage.php" genannt?

    weil

    Zitat

    habe auch schon eigene (Kopieen der page.php) Templates im dkret-Verzeichnis angelegt


    hört sich nicht danach an

    Die Bild Formatierungen werden nicht übernommen, weil du dem Bild gar keine class zuweist

    Code
    <img class=" " width="198" height="264"

    sondern nur über wp-caption ausrichtest.
    dafür gibt es aber keine css-Codes in deiner style.css

    du kannst also zu Beispiel für linke Ausrichtung dies in die style.css einfügen

    Code
    .wp-caption, alignleft {
        margin-right: 8px;
        float: left;
    }

    den Rahmen kannst du hier anpassen( style.css Zeile 268 )

    Code
    .main #content .post img, .main #content .page img {
        border: 1px solid #5AA532;
        margin-bottom: 5px;
        padding: 3px;
    }