Hallo beisammen,
ich baue gerade einen online-shop für Pilze auf:
Feinkost Zollner - Online Shop
Leider bin ich bei der Kategorienansicht auf ein großes Problem gestoßen... Ich bekomme die Headline nicht an den offensichtlich vorgesehenen Platz.
Eventuell könnt ihr mir dabei helfen?
Ich poste mal CodeSchnippsel:
Das komische ist, dass doch über der category_name gar kein Platz verbraucht wird... trotzdem rutscht der nicht nach oben .... grrrrr!!!!
bastle schon den ganzen Tag daran herum und wahrscheinlich ist die lösung ganz simpel :-/
Ich hoffe dass mir jemand helfen kann,
für Zusatzcodeinfos bitte schreiben ich weiß nicht was dafür noch relevant ist.
Danke
ich baue gerade einen online-shop für Pilze auf:
Feinkost Zollner - Online Shop
Leider bin ich bei der Kategorienansicht auf ein großes Problem gestoßen... Ich bekomme die Headline nicht an den offensichtlich vorgesehenen Platz.
Eventuell könnt ihr mir dabei helfen?
Ich poste mal CodeSchnippsel:
.category_product_browser {
padding-left: 10px;
padding-top: 2px;
padding-right: 10px;
padding-bottom: 10px;
margin: 10px;
background-image: url(images/browse_page_background.jpg);
background-repeat: no-repeat;
width: 220px;
height: 300px;
overflow: hidden;
}
.Category_Childlist_link{
font-size: large;
color: rgb(255,000,000);
text-align: center;
}
.Category_Childlist_link:hover{
font-size: large;
color: rgb(255,255,255);
text-align: left;
}
<?php if( !defined( '_VALID_MOS' ) && !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' );
mm_showMyFileName(__FILE__);
$iCol = 1;
if( !isset( $categories_per_row )) {
$categories_per_row = 3;
}
if( empty( $categories )) {
return; // Do nothing, if there are no child categories!
}
?>
<br/>
<table width="100%" cellspacing="0" cellpadding="0">
<?php
foreach( $categories as $category ) {
if ($iCol == 1) { // this is an indicator wether a row needs to be opened or not
echo "<tr>\n";
}
?>
<td class="category_product_browser" align="left" width="220px" >
<!-- Kategoriennamen -->
<a class="Category_Childlist_link"
title="<?php echo $category["category_name"] ?>"
href="<?php $sess->purl(URL."index.php?option=com_virtuemart&page=shop.browse&category_id=".$category["category_id"]) ?>">
<!-- Inhalt des Kategoriennamens Hyperlink -->
<?php echo $category["category_name"]; echo "<br />";
?>
</a>
<!-- ANFANG KATEGORIEBILD -->
<?php
if ($category["category_thumb_image"] )
{
echo ps_product::image_tag( $category["category_thumb_image"], "alt=\"".$category["category_name"]."\"", 0, "category");
}
?>
<!-- Ende Kategorienbild -->
</td>
<?php
// Do we need to close the current row now?
if ($iCol == $categories_per_row) { // If the number of products per row has been reached
echo "</tr>\n";
$iCol = 1;
}
else {
$iCol++;
}
}
// Do we need a final closing row tag?
if ($iCol != 1) {
echo "</tr>\n";
}
?>
</table>
Das komische ist, dass doch über der category_name gar kein Platz verbraucht wird... trotzdem rutscht der nicht nach oben .... grrrrr!!!!
bastle schon den ganzen Tag daran herum und wahrscheinlich ist die lösung ganz simpel :-/
Ich hoffe dass mir jemand helfen kann,
für Zusatzcodeinfos bitte schreiben ich weiß nicht was dafür noch relevant ist.
Danke