Jump to content

Déplacement du div Right


Recommended Posts

Salut à tous,

 

je travaille actuellement sur l'intégration d'une maquette html/css. Pour diverses raisons, je souhaite déplacer le hook right au dessus au dessus du hook center.

 

voila mon balisage html :

header.tpl

<body class="threecols">
    <div id="container">

<div id="{$page_name}" class="page">

	<!-- Header -->
	<div id="header">
		<h1 class="real_h1" title="{$shop_name}">
			<a href="{$base_dir}" title="{$shop_name}"><img alt="{$shop_name}" src="{$base_dir}img/logo.jpg"/></a>
		</h1>
		{$HOOK_HEADER}
	<!-- fin de #header --></div>


	<!-- Left -->
	<div id="left">
		{$HOOK_LEFT_COLUMN}
	</div>

	<!-- Right -->
	<div id="right">
        	        {$HOOK_RIGHT_COLUMN}
	</div>

	<!-- Center -->
	<div id="mainContent">

 

footer.tpl

	<!-- fin de #mainContent --></div>
<br class="clearfloat" />

	<!-- Footer -->
	<div id="footer">
		{$HOOK_FOOTER}
		<div id="footer_nav" class="footer_nav">
			<a href="prices-drop.php">{l s='Specials'}</a> | <a href="new-products.php">{l s='New products'}</a> | 
			<a href="best-sales.php">{l s='Top sellers'}</a> | <a href="contact-form.php">{l s='Contact us'}</a><br />
			<a href="mentions.php">{l s='Legal'}</a> | <a href="conditions.php">{l s='Conditions'}</a> | 
			Powered by <a href="http://www.prestashop.com" target="_blank">PrestaShop</a>™
		</div>
	</div>
    <!-- fin de #container --></div>
    </body>
</html>

 

Mon problème est de taille : le hook de droite n'affiche plus rien. Pourquoi ?

J'ai encore un peu de mal avec le fonctionnement des hooks. L'ordre $hook_header, $hook_left, $hook_home, $hook_right, $hook_footer doit il être respecté à la lettre ?

merci d'avance !

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...