Seite 1 von 1

bottomnavi frage

Verfasst: Do 16. Feb 2006, 09:12
von marcello89
hallo zusammen,

habe jetzt das bottomnavi modul für die rechte navigation verwendet
siehe: http://www.hairstylingcuzzucoli.ch/cms/ ... ontent.php
aber wie kann ich diese striche entfernen?

greez an big thx
marce

Verfasst: Do 16. Feb 2006, 10:05
von Halchteranerin
hast du mal in der css-Datei oder unter templates in den entsprechenden Templates geschaut (falls welche benutzt werden - ich kenne die Navi nicht)? Ggf. auch direkt im Modul ...

Verfasst: Do 16. Feb 2006, 10:32
von marcello89
das ist ein standardmodul von dem contenido 4.6.4 habe kein template gefunden der link wir direkt im skript erstellt! nur finde ich die funktion net, die den strich macht gefunden! habt ihr vielleicht ne idee hier ist der ausgabe code vom skript:

Code: Alles auswählen

<?php
/***********************************************
* Bottom Navigation Output
*
* Author      :     Willi Man
* Copyright   :     four for business AG
* Version	  : 	1.0
* Created     :     17-03-2005
* Modified    :     05-08-2005, Andreas Lindner
************************************************/

#System properties in use:
#Type: navigation, Name: idcat_bottomnavi
#Contains idcat of tree to be displayed in bottom navigation


#Includes
cInclude("frontend", "includes/functions.navigation.php");
cInclude('classes', 'class.template.php');

#Get settings	
$cApiClient = new cApiClient($client);
$catStart = $cApiClient->getProperty('navigation', 'idcat_bottomnavi');

if (!is_object($oClient)) {
	$oClient = new cApiClient($client);
}

#Get sub categories
$navigation = array ();
$navigation = createNavigationArray($catStart, $db);

#Output sub categories
$output = '';
if (count($navigation) > 0) {
	foreach ($navigation as $key => $data) {
		$output .= '<a href="'.$sess->url("front_content.php?idcat=".$data['idcat']).'" class="bottomnavi" title="'.$data['name'].'">&nbsp;&nbsp;<img src="images/navi_button.gif" width="7" height="7" border="0" alt="">&nbsp;&nbsp;'.$data['name'].'</a><br><br> | ';
	}
}
if (strlen($output) > 0) {
	$output = substr($output, 0, strlen($output) - 3);
}

echo $output;
?>

greez and bigTHX
marce

Verfasst: Do 16. Feb 2006, 12:30
von Halchteranerin
da steht doch class="bottomnavi"
was steht in der css-Datei zur Klasse bottomnavi?
Du brauchst uebrigens auch keinen Originalquelltext, der bei Contenido mitgeliefert wird, ins Forum zu posten.

Verfasst: Do 16. Feb 2006, 12:37
von Halchteranerin
von welchen Strichen redest du ueberhaupt? Ich habe mir erst jetzt deinen Link angeschaut und weiss nicht, welche Striche du meinst.

Verfasst: Do 16. Feb 2006, 12:40
von rezeptionist

Code: Alles auswählen

alt="">&nbsp;&nbsp;'.$data['name'].'</a><br><br> | ';
der hier ! :wink:

Verfasst: Do 16. Feb 2006, 14:13
von Halchteranerin
ach so, der vertikale. Ich hatte nur diese gestrichelten Linien aus der Hauptnavi der alten Version im Kopf ... Na ja, dann hast du ihm die Stelle genannt. :)

Verfasst: Do 16. Feb 2006, 14:22
von marcello89
jo big thx hat geklappt =)