Hey,
ich will mein altes Gästebuch a weng verändern:
Will die tabelle weg machn und des mit CSS regeln, hab etz mal nen Rahmen gemacht, blos wenn der Eintrag über 2 Zeilen hinaus geht, wird des komisch anzgezeigt:
PHP-Ausgabefunktion:
CSS Codeteil:
http://wolf360.wo.funpic.de/gaestebuchneu.php
woran könnte das liegen ?
ich will mein altes Gästebuch a weng verändern:
Will die tabelle weg machn und des mit CSS regeln, hab etz mal nen Rahmen gemacht, blos wenn der Eintrag über 2 Zeilen hinaus geht, wird des komisch anzgezeigt:
PHP-Ausgabefunktion:
PHP:
<?php
<div id="gaestebuch">
<?php
while($reihen = mysql_fetch_array($query)) {
echo '<span class="gaestebuch_ausgabe">';
echo ''.$reihen['text'].'<p>';
echo '</span>';
}
?>
<form method="post" action="<?php $_SERVER["PHP_SELF"]; ?>">
<input class="gaestebuch_felder" type="text" name="code"><br>
<input class="gaestebuch_felder" type="text" name="shoutbox[name]" value="Name">
<input class="gaestebuch_felder" type="text" name="email" value="e-mail">
<input class="gaestebuch_felder" type="text" name="homepage" value="Homepage"><br>
<input class="gaestebuch_felder" type="text" size="19" name="shoutbox[text]" value="Text" cols="80" rows="8" maxlength="200">
</form>
</div>
}
?>
CSS Codeteil:
Code:
#gaestebuch{
text-align: left;
background-color:transparent;
border: 2px solid blue;
width: 500px;
height: 20em;
}
.gaestebuch_ausgabe{
width: 100px;
height: auto;
border: 3px solid white;
}
.gaestebuch_felder{
background-color:transparent;
color:#999999
}
http://wolf360.wo.funpic.de/gaestebuchneu.php
woran könnte das liegen ?
Zuletzt bearbeitet: