CSS funktioniert nur teilweise

  • Hi...

    hab auf meiner Seite nen externes CSS... Bei Inputs, Den Scrollbalken etc funktioniert das auch wunderbar, nur die einfachen Links lassen sich nicht ändern... kann das daran liegen das ich die inhalte per switch include ?

    hier das css:

    .links {
    color: #FF9900;
    text-decoration: none;
    }

    a.links:link {
    color: #FF9900;
    text-decoration: none;
    }

    a.links:active {
    color: #FF9900;
    text-decoration: none;
    }

    a.links:visited {
    color: #FF9900;
    text-decoration: none;
    }

    a.links:hover {
    color: #FF9900;
    text-decoration: underline;
    }

    input, textarea, select {
    font-family: Verdana;
    font-size: 12px;
    }

    body, textarea, select {
    scrollbar-face-color: #FECB49;
    scrollbar-highlight-color: #FF9900;
    scrollbar-3dlight-color: #FECB49;
    scrollbar-darkshadow-color: #FECB49;
    scrollbar-shadow-color: #FF9900;
    scrollbar-arrow-color: #FF9900;
    scrollbar-track-color: #FECB49;
    }

    input, submit, select, textarea {
    border-width: 1px;
    border-color: #FF9900;
    border-style: solid;
    background: #FECB49;
    color: #000000;
    font-weight:bold;
    }

    und wenn sie nicht gestorben sind, dann sterben sie noch heute !

  • Zitat

    Neuen Eintrag erstellen


    Im css teil definierst du nur für links der class="links".
    Wenn nun aber ein a-tag nicht mit class="links" attributisiert wurde, wird es auch nicht vom css teil beinflusst

    Code
    [url='#neuereintrag']Neuen Eintrag erstellen[/url]


    So mal probieren.