Bonjour à tous,
Je viens d'installer HockeyLeague sur un site.
Afin d’obtenir un visuel correct, je dois rajouter une ligne dans l'index.php du Template. Mais mes connaissance étant très limité en programmation, je sollicite votre aide.
A priori c'est simple mais cela ne fonctionne pas.
Voici dans un premier temps les instructions:
J'ai donc placé le fichier comme indiqué.
Suivant la notice je dois maintenant rajouter une ligne dans l'index.php. C'est là que les choses se complique pour moi.
Je l'ai placé mais cela ne fonctionne pas.
Pouvez vous me dire où placer cette ligne exactement?
Merci pour votre aide
Je viens d'installer HockeyLeague sur un site.
Afin d’obtenir un visuel correct, je dois rajouter une ligne dans l'index.php du Template. Mais mes connaissance étant très limité en programmation, je sollicite votre aide.
A priori c'est simple mais cela ne fonctionne pas.
Voici dans un premier temps les instructions:
###This is style for module
###note that !!!
###for specific template you should modified style
you have file
/css/hmodule.css
/images/mh/* all folder
you must put them into your tamplate
your_costum_tamplate <---------- your name of tamplate
/your_costum_tamplate/css/hmodule.css
/your_costum_tamplate/images/mh/* all file
after that you have to edit your main file tamplate index.php
/your_costum_tamplate/index.php
and add line
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/your_costom_tamplate/css/hmodule.css" type="text/css" />
Note :: On some templates insted of modifying index.php you should modify default.php founded in layout folder of your template. Insert your line after the </head> tag. !!!
###note that !!!
###for specific template you should modified style
you have file
/css/hmodule.css
/images/mh/* all folder
you must put them into your tamplate
your_costum_tamplate <---------- your name of tamplate
/your_costum_tamplate/css/hmodule.css
/your_costum_tamplate/images/mh/* all file
after that you have to edit your main file tamplate index.php
/your_costum_tamplate/index.php
and add line
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/your_costom_tamplate/css/hmodule.css" type="text/css" />
Note :: On some templates insted of modifying index.php you should modify default.php founded in layout folder of your template. Insert your line after the </head> tag. !!!
Suivant la notice je dois maintenant rajouter une ligne dans l'index.php. C'est là que les choses se complique pour moi.
Je l'ai placé mais cela ne fonctionne pas.
Pouvez vous me dire où placer cette ligne exactement?
Merci pour votre aide
Code HTML:
<?php /*================================================================================*\ || # Copyright (C) 2012 Joomlage.com Nexus Framework. All Rights Reserved. || || # license - PHP files are licensed under GNU/GPL V2 || || # license - CSS - JS files are Copyrighted material || || # Website: http://www.joomlage.com || \*================================================================================*/ defined('_JEXEC') or die; // JPlugin::loadLanguage( 'tpl_SG1' ); JHTML::_('behavior.mootools'); define( 'nexus', dirname(__FILE__) ); require( nexus.DS."php/config.php"); require( nexus.DS."php/variables.php"); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" > <head> <jdoc:include type="head" /> <?php include (nexus.DS . "php/styles.php");?> <?php include (nexus.DS . "php/scripts.php");?> <?php echo ($head_custom_code); ?> </head> <body> <div id="container_header" class="container"><div class="wrapper960"> <?php require( nexus.DS."php/layouts/header.php"); ?> </div></div> <?php if ($this->countModules( 'showcase' )) : ?> <div id="container_slideshow" class="container"><div class="wrapper960"> <?php require( nexus.DS."php/layouts/slideshow.php"); ?> </div></div> <?php endif; ?> <?php if ($this->countModules('top-1a') || $this->countModules('top-1b') || $this->countModules('top-1c') || $this->countModules('top-1d') || $this->countModules('top-1e') || $this->countModules('top-1f') || $this->countModules('top-2a') || $this->countModules('top-2b') || $this->countModules('top-2c') || $this->countModules('top-2d') || $this->countModules('top-2e') || $this->countModules('top-2f')) : ?> <div id="container_top_modules" class="container"><div class="wrapper960"> <?php require( nexus.DS."php/layouts/top_modules.php"); ?> </div></div> <?php endif; ?> <?php if ($this->countModules( 'breadcrumb' )) : ?> <div id="container_breadcrumb" class="container"><div class="wrapper960"> <?php require( nexus.DS."php/layouts/breadcrumb.php"); ?> </div></div> <?php endif; ?> <div id="container_main" class="container"><div class="wrapper960"> <?php require( nexus.DS."php/layouts/main.php"); ?> </div></div> <?php if ($this->countModules('bottom-1a') || $this->countModules('bottom-1b') || $this->countModules('bottom-1c') || $this->countModules('bottom-1d') || $this->countModules('bottom-1e') || $this->countModules('bottom-1f') || $this->countModules('bottom-2a') || $this->countModules('bottom-2b') || $this->countModules('bottom-2c') || $this->countModules('bottom-2d') || $this->countModules('bottom-2e') || $this->countModules('bottom-2f')) : ?> <div id="container_bottom_modules" class="container"><div class="wrapper960"> <?php require( nexus.DS."php/layouts/bottom_modules.php"); ?> </div></div> <?php endif; ?> <?php if ($this->countModules('base-1a') || $this->countModules('base-1b') || $this->countModules('base-1c') || $this->countModules('base-1d') || $this->countModules('base-1e') || $this->countModules('base-1f') || $this->countModules('base-2a') || $this->countModules('base-2b') || $this->countModules('base-2c') || $this->countModules('base-2d') || $this->countModules('base-2e') || $this->countModules('base-2f') || $this->countModules( 'footer-1' ) || $this->countModules( 'footer-2' ) || $this->params->get('copyright') || ($footermenu_onoff == "1")) : ?> <div id="container_base" class="container"><div class="wrapper960"> <?php require( nexus.DS."php/layouts/base.php"); ?> </div></div> <?php endif; ?> <?php echo ($body_custom_code); ?> </body> </html>
Commentaire