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

Flasches CSS?

Status
Für weitere Antworten geschlossen.

Andreas84

Neues Mitglied
Hi,

ich hab folgendes in meinem Quelltext:
Code:
            <div class="kategorien"><a href="{cp:if:mod_rewrite}shop-{cp:shop:item:number}-{cp:rewrite text="{cp:shop:item:title}"}.html{/cp:if:mod_rewrite}{cp:ifnot:mod_rewrite}index.php?file=shop&mode=details&number={cp:shop:item:number}{/cp:ifnot:mod_rewrite}" title="{cp:shop:item:title}">
    <?php if (trim('{cp:shop:item:imagefile}') && (file_exists('{cp:shop:item:imagefile}')) ) { 
        $size = getimagesize('{cp:shop:item:imagefile}');
        if(($size[1]/$size[0]) < 1.225){?>
            <img src="img.resize.php?path={cp:shop:item:imagefile}&width=105" width="109" alt="" / style="border: 1px solid #ffffff;">
            <?php }
        else { ?>
            <img src="img.resize.php?path={cp:shop:item:imagefile}&height=129" height="133" alt="" / style="border: 1px solid #ffffff;">
        <?}
     } else { ?>
                <img width="100" src="/modules/shop/images/custom/no-picture-main.jpg" / style="border: 1px solid #ffffff;">
            <?php }?></a><a href="{cp:if:mod_rewrite}shop-{cp:shop:item:number}-{cp:rewrite text="{cp:shop:item:title}"}.html{/cp:if:mod_rewrite}{cp:ifnot:mod_rewrite}index.php?file=shop&mode=details&number={cp:shop:item:number}{/cp:ifnot:mod_rewrite}" title="{cp:shop:item:title}">{cp:shop:item:title}</a></div>

In meiner .csss habe ich das reingeschrieben:
.kategorien {
font-size: 10px;
font-weight: bold;
margin-left: 7px;
margin-bottom: 0px;
margin-top: 2px;
height: 18px;
color: #664929;
text-align: left;
line-height: 11px;
}
#kategorien {
style="background-color: #ffffff;
margin: 5px;
height: 127px;
padding-bottom: -2;"
}

Die Artikel werden richtig angezeigt, aber die Schrift verändert sich irgendwie nicht so, wie ich es haben möchte. Wo liegt der Fehler?

Gruß,
Andi
 
falsch:
Code:
#kategorien {
    style="background-color: #ffffff; 
    margin: 5px; 
    height: 127px; 
    padding-bottom: -2;"
}
richtig:
Code:
#kategorien {
    background-color: #ffffff; 
    margin: 5px; 
    height: 127px; 
    padding-bottom: -2;
}

Da dürfte der Fehler allerdings nicht sein.
 
1. Doctype? Falls du XHTML benutzt, darfst du keine " setzen.
2. Probier mal, anstatt dem div einer class eine id zu geben. Bin mir aber nicht sicher, ob es dann funktioniert. :/
3. Zeig mal deinen GANZEN Quelltext (oder nen Link). ;)
 
falsch:
Code:
#kategorien {
    style="background-color: #ffffff; 
    margin: 5px; 
    height: 127px; 
    padding-bottom: -2;"
}
richtig:
Code:
#kategorien {
    background-color: #ffffff; 
    margin: 5px; 
    height: 127px; 
    padding-bottom: -2;
}
Da dürfte der Fehler allerdings nicht sein.

nicht richtig;) muß heißen
Code:
padding-bottom: -2px;
oder irgend ne andere Einheit

331 Fehler, naja ich hab die startseite validieren lassen;), da warens weniger
[Invalid] Markup Validation of http://www.dealer-shop.de/ - W3C Markup Validator
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben