CSS Problem...

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • CSS Problem...

    Hallo,

    mit dieser css-Datei möchte ich erreichen, dass Links im class="content" rot sind. Sie sind aber grau und ich verstehe das nicht.
    Kann mir das jmd erklären/mir helfen?

    HTML-Quellcode (Hier wird ein grauer statt roter Link angezeigt):

    <tr>
    <td class="content"><a href="passwort_anfordern.php"><img src="images/zeigen.gif" width="8" height="8" border="0" alt="">passwort anfordern</a></td>
    </tr>

    CSS-File("leider" komplett damit nicht irgendwo einer Fehler drin ist, den ich übersehe / nicht kenne):

    td {
    font-family: Arial;
    font-size : 11px;
    font-style : normal;
    font-variant : normal;
    font-weight : normal;
    text-decoration : none;
    text-transform : none;
    color : #999999;
    }

    a:link {
    text-decoration: none;
    color : #8C8E8C;
    }

    a:visited {
    text-decoration: none;
    color : #8C8E8C;
    }

    a:hover {
    text-decoration : underline;
    color : #ADAEAD;
    }
    a:active {
    text-decoration : none;
    color : #ADAEAD;
    }

    .content {
    font-family : Arial, Helvetica;
    font-size : 11px;
    color : #999999
    background : #FFFFFF;
    }

    .content a:link {
    color #FF3333;
    }

    .content a:hover {
    color #FF3333;
    }

    .content a:active {
    color #FF3333;
    }

    .menu a:link {
    background : #CCCCCC;
    }

    .menu a:hover {
    background : #FF3333;
    }

    .menu a:active {
    background : #FF3333;
    }

    .1_line {
    background : #999999;
    }

    select {
    font-size : 9px;
    }

  • #2
    Doppel punkt hinter color vergessen - sorry

    Kommentar


    • #3
      hallo du auch hier ! -> vergess das : bei color: nicht

      Kommentar


      • #4
        Hi
        ja...
        vielen Dak für den Tipp mit topstyles übrigens !
        Bei bei K... noch nicht fündig geworden.
        Ist die freie lite version zu empfehlen?

        Kommentar


        • #5
          lite ist auch ok glaub ich aber topstyle pro 2 ist sehr gut und aktuell ...
          ich guck ma ob ichs noch hab ...

          Kommentar


          • #6
            topstyle pro 2

            was ist das und wo finde ich das ?
            hört sich interessant an
            thx Mukraker

            Kommentar


            • #7
              gib mal ein bei google oder k**z**

              Kommentar


              • #8
                Hi,

                brauch noch mla hilfe...

                Ich habe ja class="content" im css-file definiert.
                Wie kann ich bei z.B. class="border_bottom" die definitionen von content übernehmen und weitere hinzufügen ohne die von content nochmal neu zu schreiben?

                Kommentar


                • #9
                  Code:
                  .content{font-weight:bold;}
                  
                  .border_bottom{border-bottom:4px solid lime;}
                  
                  <a class="content border_bottom" href="#">Link</a>
                  Ich denke, also bin ich. - Einige sind trotzdem...

                  Kommentar


                  • #10
                    Danke Mr!

                    Kommentar

                    Lädt...
                    X