Link unterschiedlich vormatieren?

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

  • Link unterschiedlich vormatieren?

    Hallo @ll,

    ich habe auf meiner Seite verschiedene <div> Bereiche.
    z.b. <DIV id=header> oder <DIV id=menue> ect.
    Jetzt möchte ich in allen Bereichen die Link Formation gleich habe.
    nur im footer Breich soll der Link anders formatiert werden.

    Ich habe mir das so gedacht.
    PHP-Code:
    BODY {
        
    FONT85arialheveticasans-serif
        
    COLOR#404040; 
        
    BACKGROUND-COLOR#FBF8C5; 
        
    TEXT-ALIGNleft;
        }
        
    A   
       
    {
       
    text-decoration:none
       
    }    
    A:link 
       
    {
       
    COLOR#000080
       
    }

    A:visited 
       
    {
       
    COLOR#000080
       
    }

    A:hover 
       
    {
       
    COLOR#fff; 
       
    BACKGROUND-COLOR#000080
       
    }

    A:active 
       
    {
       
    COLOR#fff; 
       
    BACKGROUND-COLOR#000080
       
    }
    #menu 
       
    {
       
    FLOATleft
       
    WIDTH110px
       
    BACKGROUND-COLOR#FBF8C5;
       
    }
    #footer 
       
    {
       
    CLEARboth
       
    FONT-SIZE90%;
       
    BACKGROUND-COLOR#FBF8C5;
       
    }
    #footer 
    A:hover 
       
    {
       
    text-decoration:none
       

    ich möchte jetzt das der Link (teilweise transparente Grafik)
    die Formation
    A:hover
    {
    text-decoration:none
    }
    bekommt aber das klappt so nicht.
    Was mache ich falsch?

    Gruß Scotch

  • #2
    Mach dir doch für den speziell zu f ormatierenden Link eine CSS-Klasse.
    Code:
    a.temp:hover{
    text-decoration:none;
    }
    Dann kannst du im html so
    Code:
    <a href="ziel.php" class="temp">blala</a>
    den gewünschten Link setzen.

    Gruss

    tobi
    Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

    [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
    Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

    Kommentar

    Lädt...
    X