Ciao a tutti,
una domanda: ho del codice che richiama delle immagini (pulsanti) e dei links
di testo.
Ora tutto funziona correttamente (cioè vengono richiamate bene sia le immagini che i links di testo)
soltanto che i links invece di apparire sopra l'immagine mi compaiono a fianco.
Mi aiutate a risolvere questa cosa?
Vi posto di seguito il codice in questione, GRAZIE:

function tep_show_category($counter) {

// BoF - Contribution Category Box Enhancement 1.1
global $tree, $categories_string, $cPath_array, $cat_name;

for ($i=0; $i<$tree[$counter]['level']; $i++) {
$categories_string .= "";
}
$cPath_new = 'cPath=' . $tree[$counter]['path'];
$categories_string .= '<a href="';
$categories_string .= tep_href_link(FILENAME_DEFAULT, $cPath_new) . '">';

if (tep_has_category_subcategories($counter)) {
$categories_string .= tep_image(DIR_WS_IMAGES . 'bottone.jpg', '');
}
else {
$categories_string .= tep_image(DIR_WS_IMAGES . 'bottone.jpg', '');
}

if (isset($cPath_array) && in_array($counter, $cPath_array)) {
$categories_string .= '';
}

if ($cat_name == $tree[$counter]['name']) {
$categories_string .= '<span class="errorText">';
}

// display category name
$categories_string .= $tree[$counter]['name'];

if ($cat_name == $tree[$counter]['name']) {
$categories_string .= '</span>';
}

if (isset($cPath_array) && in_array($counter, $cPath_array)) {
$categories_string .= '
';
}