Hallo Jungs,
hab ein kleines Problem. Auf meiner Feedback seite hab ich User Fotos mit Sprechblasen eingebaut siehe _> hier
so nun will ich aber die Bilder nich oben haben sondern unten im div...
habs schon mit position:relative und bottom:0px versucht aber das will nicht... genauso nich wie vertical align... Jetzt stellt sich die Frage wie bekomm ich die nach unten???
code zum anzeigen sieht so aus:
die betreffenden angaben in der css file sind diese hier:
.feedbackaround { width:520px; float:left; color:black; margin-top:15px; }
.feedadd { margin-left:10px; font-size:12px }
.feedbackimg { width:100px; float:left; margin-right:15px; position:relative; bottom:0px }
.feedtopleft { width:25px; height:25px; background-image:url(img/tr.jpg); background-repeat:no-repeat; background-position:left; float:left }
.feedtop { width:320px; height:25px; background-image:url(img/trep.jpg); background-repeat:repeat-x; float:left; }
.feedheadline { margin-top:7px; margin-left:-10px; }
.feedtopright { width:25px; height:25px; background-image:url(img/tl.jpg); background-repeat:no-repeat; background-position:left; float:left }
.feedcontent { width:366px; background-image:url(img/cr.jpg); background-repeat:repeat-y; float:left; margin-right:35px; padding-bottom:15px }
.feedsrc { margin-left:25px; display:block }
.feedbottomleft { width:25px; height:30px; background-image:url(img/bl.jpg); background-repeat:no-repeat; background-position:left; float:left }
.feedbottom { width:320px; height:30px; background-image:url(img/brep.jpg); background-repeat:repeat-x; float:left }
.feedfooter { float:right; margin-bottom:7px; font-size:x-small }
.feedbottomright { width:25px; height:30px; background-image:url(img/br.jpg); background-repeat:no-repeat; background-position:left; float:left }
hoffe ihr könnt damit was anfangen...
hab ein kleines Problem. Auf meiner Feedback seite hab ich User Fotos mit Sprechblasen eingebaut siehe _> hier
so nun will ich aber die Bilder nich oben haben sondern unten im div...
habs schon mit position:relative und bottom:0px versucht aber das will nicht... genauso nich wie vertical align... Jetzt stellt sich die Frage wie bekomm ich die nach unten???
code zum anzeigen sieht so aus:
PHP-Code:
<div style="width:520px; background-image:url(img/sitecorner.jpg);
background-repeat:no-repeat; background-position:top right; float:left">
<span class="sitehead">.u</span><span class="siterest">serfeedback</span> <span class="feedadd">-
<a href="?site=feedbackadd">feedback hinzufügen</a> -</span>
<?php require 'config.inc.php'; $sql="SELECT * FROM feedback WHERE free=1
order by id DESC "; $data=mysql_query($sql, $db); while ($feed = mysql_fetch_array ($data))
{ ?> <?php if(empty($feed['img'])) { $img='img/feedback/nopic.jpg'; }
else { $img = $feed['img'] ;} ?> <div class="feedbackaround"> <div
class="feedbackimg"><img src="<?php echo $img ?>" alt="<?php echo
$feed['name'] ?>" style="width:100px; height:100px;" /></div>
<div style="width:370px; float:left">
<div style="background-image:url(img/cr.jpg); background-repeat:repeat-y;
float:left; height:30px"> <div class="feedtopleft"></div>
<div class="feedtop"><div class="feedheadline"><span class="sitehead">
<strong><?php echo $feed['name'] ?>:</strong></span></div></div>
<div class="feedtopright"></div></div> <div class="feedcontent">
<div class="feedsrc">''<?php echo nl2br($feed['text']) ?>''</div></div>
<div class="feedbottomleft"></div> <div class="feedbottom">
<div class="feedfooter"><em><?php echo $feed['weekday'] ?>
<?php echo $feed['mday'] ?>/<?php echo $feed['mon'] ?>/
<?php echo $feed['year'] ?></em></div></div>
<div class="feedbottomright"></div> </div>
</div> <?php } ?> </div>
die betreffenden angaben in der css file sind diese hier:
.feedbackaround { width:520px; float:left; color:black; margin-top:15px; }
.feedadd { margin-left:10px; font-size:12px }
.feedbackimg { width:100px; float:left; margin-right:15px; position:relative; bottom:0px }
.feedtopleft { width:25px; height:25px; background-image:url(img/tr.jpg); background-repeat:no-repeat; background-position:left; float:left }
.feedtop { width:320px; height:25px; background-image:url(img/trep.jpg); background-repeat:repeat-x; float:left; }
.feedheadline { margin-top:7px; margin-left:-10px; }
.feedtopright { width:25px; height:25px; background-image:url(img/tl.jpg); background-repeat:no-repeat; background-position:left; float:left }
.feedcontent { width:366px; background-image:url(img/cr.jpg); background-repeat:repeat-y; float:left; margin-right:35px; padding-bottom:15px }
.feedsrc { margin-left:25px; display:block }
.feedbottomleft { width:25px; height:30px; background-image:url(img/bl.jpg); background-repeat:no-repeat; background-position:left; float:left }
.feedbottom { width:320px; height:30px; background-image:url(img/brep.jpg); background-repeat:repeat-x; float:left }
.feedfooter { float:right; margin-bottom:7px; font-size:x-small }
.feedbottomright { width:25px; height:30px; background-image:url(img/br.jpg); background-repeat:no-repeat; background-position:left; float:left }
hoffe ihr könnt damit was anfangen...
Kommentar