verschiedene css sagste,
http://extensions.joomla.org/extensi...ign/templating
Menu Dependent Items
This Module displays an image or loads a CSS-File from your choosen directory....
css2switch
This Component enables Joomla!-Administrators to assign different stylesheets to any published menu-items....
ansonsten kann ich mir noch vorstellen, je nachdem wohin / worauf deine links da zeigen, im template ne session variable abzufragen.
PHP-Code:
// O b v i o u s
$color = Array( 0 => 'blue', 1 => 'green', 2 => 'brown' );
// A p p l i c a t i o n
$application = JFactory::getApplication();
/**
* Sets session var to default if no post variable
* was found.
**/
$style = (int) $application->getUserStateFromRequest( 'sss_color', 'sss_color', 1 );
HTML-Code:
<link rel="stylesheet" href="<?php echo $tmpTools->templateurl(); ?>/css/template<?php echo $style; ?>.css" type="text/css" />
als ansatz zu verstehen. ich habs hier gerade durchgespielt und wenn die links in einem menue mit http://domain.tld/index.php?sss_color=N angelegt werden, klappts
ich hoffe das ist die richtige richtung
gruss, sven
Lesezeichen