Link

  • Hi Leute,

    ich möchte auf meiner Homepage Links einsetzten. Jedoch haben die normalen a href links immer einen Strich drunter. Wie kann ich einen Link ohne Strich drunter machen????

  • probier mal im style das hier, die einzelnen werte kannst du frei verändern

    Code
    <style type="text/css">
    a:link { font-weight:bold; color:#0000E0; text-decoration:none }
    a:visited { font-weight:bold; color:#000080; text-decoration:none }
    a:hover { font-weight:bold; color:#E00000; text-decoration:none }
    a:active { font-weight:bold; color:#E00000; text-decoration:underline }
    a:focus { font-weight:bold; color:#00E000; text-decoration:underline }
    </style>

    du kannst das sowohl extern als css file machen oder einfach in den header so einfügen