Nixblick
Neues Mitglied
Hallo,
ich bin hier neu und hab kaum Ahnung von HTML.
Mein Problem:
Die Firmen werden auf meiner Startseite mit Lücken dargestellt (siehe unten). Es werden auch die Images nicht in gewünschter Grösse eingeblendet.
Der Code der index.php:
---------------------------------------------------------------------
<div class="heading">
<div class="container">
<div class="row"><h1><?php echo CBE1_HOME_FEATURED_STORES; ?></h1></div>
</div>
</div>
<div class="brands-section">
<div class="container">
<div class="row">
<?php while ($row_featured = mysqli_fetch_array($result_featured)) { ?>
<div class="brands-ctnr"><a href="<?php echo GetRetailerLink($row_featured['retailer_id'], $row_featured['title']); ?>"><img src="<?php if (!stristr($row_featured['image'], 'http')) echo SITE_URL."img/"; echo $row_featured['image']; ?>" width="<?php echo IMAGE_WIDTH; ?>" height="<?php echo IMAGE_HEIGHT; ?>" alt="<?php echo $row_featured['title']; ?>" border="0"></a><h4 class="hidden-xs"><?php echo $row_featured['title']; ?></h4>
<?php if ($row_featured['cashback'] != "") { ?>
<span class="cashback hidden-xs"><span class="value"><?php echo DisplayCashback($row_featured['cashback']); ?> <?php echo CBE1_CASHBACK; ?></span></span>
<?php } ?>
</div>
<?php } ?>
</div>
</div>
</div>
<?php
}
} // end featured retailers
-------------------------------------------------------------------------------
Ich weiss nicht, ob ich alles Wichtige darstellen konnte.
Für Hilfe bin ich dankbar
ich bin hier neu und hab kaum Ahnung von HTML.
Mein Problem:
Die Firmen werden auf meiner Startseite mit Lücken dargestellt (siehe unten). Es werden auch die Images nicht in gewünschter Grösse eingeblendet.
Der Code der index.php:
---------------------------------------------------------------------
<div class="heading">
<div class="container">
<div class="row"><h1><?php echo CBE1_HOME_FEATURED_STORES; ?></h1></div>
</div>
</div>
<div class="brands-section">
<div class="container">
<div class="row">
<?php while ($row_featured = mysqli_fetch_array($result_featured)) { ?>
<div class="brands-ctnr"><a href="<?php echo GetRetailerLink($row_featured['retailer_id'], $row_featured['title']); ?>"><img src="<?php if (!stristr($row_featured['image'], 'http')) echo SITE_URL."img/"; echo $row_featured['image']; ?>" width="<?php echo IMAGE_WIDTH; ?>" height="<?php echo IMAGE_HEIGHT; ?>" alt="<?php echo $row_featured['title']; ?>" border="0"></a><h4 class="hidden-xs"><?php echo $row_featured['title']; ?></h4>
<?php if ($row_featured['cashback'] != "") { ?>
<span class="cashback hidden-xs"><span class="value"><?php echo DisplayCashback($row_featured['cashback']); ?> <?php echo CBE1_CASHBACK; ?></span></span>
<?php } ?>
</div>
<?php } ?>
</div>
</div>
</div>
<?php
}
} // end featured retailers
-------------------------------------------------------------------------------
Ich weiss nicht, ob ich alles Wichtige darstellen konnte.
Für Hilfe bin ich dankbar
