Salut a tous,
Je travaille sur un template base sur le framework Jat 3.
J'ai actuellement une position slideshow qui prend toute la largeur du template, et j'aimerai rajouter une colonne a droite afin d y afficher un module ( nouvelle position : slideshow_right)
J'ai suivi un tuto.
Dans le fichier etc/layouts/default.xml, je rajoute la ligne :
<block name="blockbanner" type="modules" style="raw">slideshow_right</block>
Ensuite, je cree un fichier : blockbanner.php dans le dossier : blocks
et finalement je definis le style dans template.css
Je vois bien apparaitre une zone rouge, mais je n'arrive pas a faire qu'elle tienne sur la meme ligne, elle apparait en dessous.
Est ce un probleme de position ou de css?
Je suis un peu perdu !
Merci d'avance
Je travaille sur un template base sur le framework Jat 3.
J'ai actuellement une position slideshow qui prend toute la largeur du template, et j'aimerai rajouter une colonne a droite afin d y afficher un module ( nouvelle position : slideshow_right)
J'ai suivi un tuto.
Dans le fichier etc/layouts/default.xml, je rajoute la ligne :
<block name="blockbanner" type="modules" style="raw">slideshow_right</block>
Code:
<?xml version="1.0" encoding="utf-8"?> <layout name="desktop"> <!--Extra css load for this layout--> <stylesheets> </stylesheets> <blocks name="top" style="xhtml"> <block name="top-panel" type="modules" style="raw">top-panel</block> <block name="header" type="header"></block> <block name="mainnav" type="mainnav"></block> <block name="cpanel" type="usertools/cpanel"></block> <block name="topbar" type="topbar"></block> <block name="slideshow" type="modules" style="raw">slideshow</block> <block name="blockbanner" type="modules" style="raw">slideshow_right</block> <block name="topsl" type="spotlight" main-inner="1">user1,user2,user3,user4</block> <block name="topsl1" type="spotlight" main-inner="1">tabs,user5</block> </blocks> <blocks name="middle" colwidth="25" main-inner="1"> <block name="content-mass-top">content-mass-top</block> <block name="content-mass-bottom">content-mass-bottom</block> <block name="right1">right</block> <block name="inset2">inset2</block> </blocks> <blocks name="bottom" style="xhtml"> <block name="botsl" type="spotlight" main-inner="1">user6,user7,user8,user9</block> <block name="navhelper" type="navhelper"></block> <block name="botsl1" type="spotlight" main-inner="1">user10,user11,user12,user13</block> <block name="bottommenu" type="modules" style="raw" main-inner="1">user14</block> <block name="footer" type="footer" main-inner="1"></block> </blocks> </layout>
Code:
<?php if($this->countModules('slideshow_right')) : ?> <div id="slideshow_right"> <jdoc:include type="modules" name="slideshow_right" /> </div> <?php endif; ?>
Code:
#ja-blockbanner { display: block; background: #f00; height: 100px; width:300px; }
Est ce un probleme de position ou de css?
Je suis un peu perdu !
Merci d'avance
Commentaire