Citat: Fqris poslato Oktobar 06, 2018, 23:27:08 POSLE PODNEEvo ti, ovo ti je samo vezano za tabelu, mislim da nesto oko style-a treba
Nista bez koda...
<div id="content">
<div class="columns">
<div class="box">
<?php echo "<table>"; while ($row = mysqli_fetch_array($result)) { if($count < $limit){ if($count == 0){ echo "<tr>"; } echo "<td colspan='5'><img src='images/".$row['image']."'>".$row['group_text']."<br>".$row['image_text']."</td>"; } else{ $count = 0; echo "</tr><tr><td>".$row['group_text']."<br>".$row['image_text']."</td>"; } $count++; } echo "</tr></table>"; ?>
<a href="index.php"> Back </a>
</div>
</div>
</div>
<style type="text/css">
#content{
width: 1150px;
height: auto;
margin: 20px auto 30px;
}
img{
float: left;
margin: 5px;
width: 225px;
height: 200px;
}
.box{
width: 225px;
height: 300px;
margin-right: 20px;
float: left;
font-family: Arial, Helvetica, sans-serif;
}
.box img{
margin-bottom: 10px;
}
table {
border-collapse: collapse;
}
table, td {
text-align: left;
border: 1px solid black;
font-family: Agency FB;
}
table, img{
table-layout: fixed;
}
</style>