Unterstreichen unterbinden

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

  • Unterstreichen unterbinden

    Grüß euch LEute ich hätte da wieder einaml ein Problem:
    Ich lasse das MEnü auf meiner Seite aus meiner MYSQL Datenbank auslesen, das funzt auch alles, jedoch sind die Links dann immer unterstrichen und grün wenn man sie bereits geklickt hat, also typische Hyperlinks halt.

    Das möchte ich jedoch nicht, dashalb hab ich das Ausgeben der Datenbankdaten also das
    while($dbrow = mysql_fetch_object($dbnav)){
    print($dbrow->URL . "<br>");
    }

    zwischen eine Spanclass gesetzt, also :echo "<span class= Stil2>"; aber trotzdem unterstreicht der mir die dummen links, obwohl in dem Stil: text-decoration: none eingestellt ist, er übernimmt mir sogar Schriftart und alles, aber er unterstreichts, das will ich nicht

    Habt ihr eine Lösung für das Problem??
    Bin für jede Antwort dankbar!!!

    PHP-Code:
    <? session_start(); ?>

    <?
    //connect to and select database
    if(!($dbconnect = mysql_pconnect("localhost", "ripper018", "AdmiN7019"))){
        print("Failed to connect to database!\n");
        exit();
        }
    if(!mysql_select_db("bodybuilding-online_attest", $dbconnect)){
        print("Failed to select database!\n");
        exit();
        }

    //query to get navigation from database
    $qnav = "SELECT URL ";
    $qnav .= "FROM tblNavigation ";
    $qnav .= "WHERE accesslevel = 'public'";

    if(!($dbnav = mysql_query($qnav, $dbconnect))){
        print("MySQL reports: " . mysql_error() . "\n");
        exit();
        }


    ?>
    <html>
    <head>
    <title>Unbenanntes Dokument</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <style type="text/css">
    <!--
    .Stil2 {
        font-size: 14px;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        color: #000000;
        font-weight: bold;
        font-variant: normal;
        text-decoration: none;
        font color: #000000;
        font-style: normal;
        line-height: normal;
        list-style-type: disc;
    }
    .Ueberschrift {
        font: bold normal 14px Verdana, Arial, Helvetica, sans-serif;
        color: #999999;
    }
    -->
    </style>
    </head>



    <body>

    <?
    ////////////////////////////////////////////////////7
    echo "<table width= 100% border= 0 align= center>";
      echo "<tr>";
      echo "<td height= 90 colspan= 3 bgcolor= #0066FF>banner</td>";
      echo "</tr>";
      echo "<tr>";

            echo "<td width= 14% height= 321><table
    width= 200 height= 93 border= 1 align= center
    bordercolor= #FF9966 style= border-collapse: collapse>";
         
     echo "<tr>";
            echo "<td height= 25><div align= center><strong>NAVIGATION</strong></div></td>";
          echo "</tr>";
         echo " <tr>";
            echo "<td>";    
    echo "<span class= Stil2>";

        while($dbrow = mysql_fetch_object($dbnav)){
        print($dbrow->URL . "<br>");
        }

    echo "</span>";
        echo "</td>";
          echo "</tr>";
        echo "</table>";
        echo "</td>";
        echo "<td width= 72%>Content</td>";
        echo "<td width= 14%>Abstimmung</td>";

      echo "</tr>";
      echo "<tr>";
        echo "<td height= 85 colspan= 3>Fu&szlig;zeile</td>";
      echo "</tr>";
      

    echo "</table>";


    ?>

    </body>
    </html>
    EDIT:
    umbruch by Abraxax

  • #2
    Re: Unterstreichen unterbinden

    Original geschrieben von ripper018
    Habt ihr eine Lösung für das Problem??
    tipp: css

    daher auch mal *VERSCHIEB*, da das kein php-problem ist.

    Code:
    a { color: #f0f; text-decoration: underline; }
    a.dummy2 { color: #00f; text-decoration: none; }

    Code:
    <a href="">dummy 1</a>
    <a href="" class="dummy2">dummy2</a>
    INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


    Kommentar


    • #3
      Danke

      Vielen Dank, es funzt! ;-)

      Kommentar


      • #4
        Re: Re: Unterstreichen unterbinden

        tipp2: css
        Code:
        a { color: #f0f; text-decoration: underline; }
        .dummy a { color: #00f; text-decoration: none; }
        Code:
        <a href="">dummy 1</a>
        <span class="dummy"><a href="">dummy2</a></span>
        Die Zeit hat ihre Kinder längst gefressen

        Kommentar

        Lädt...
        X