soucis qeel

2 participants

Voir le sujet précédent Voir le sujet suivant Aller en bas

Résolu soucis qeel

Message par Lady doll Mer 15 Jan 2014 - 19:07

Bonjour,
actuellement en pleine création de forum, j'ai souhaiter faire un qeel via le template overall_header. Jusque là tout allait bien sauf que... les membres connectés au cours de 24 dernières heures refusent de s'afficher. J'aimerais savoir si cela viendrait d'une fausse manip' de ma part où bien si le faite que cela soit placé dans un autre template soit le problème. Voici donc mon template en question:

Code:
<!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" dir="{S_CONTENT_DIRECTION}" id="min-width" lang="{L_LANG_HTML}" xml:lang="{L_LANG_HTML}" {NAMESPACE_FB_LIKE} {NAMESPACE_FB} {NAMESPACE_BBCODE}>
<head>
 <title>{SITENAME_TITLE}{PAGE_TITLE}</title>
 <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
 <meta http-equiv="content-script-type" content="text/javascript" />
 <meta http-equiv="content-style-type" content="text/css" />
 <!-- BEGIN switch_compat_meta -->
 <meta http-equiv="X-UA-Compatible" content="IE={switch_compat_meta.VERSION}" />
 <!-- END switch_compat_meta -->
 <!-- BEGIN switch_canonical_url -->
 <link rel="canonical" href="{switch_canonical_url.CANONICAL_URL}" />
 <!-- END switch_canonical_url -->
 {META_FAVICO}
 {META}
 {META_FB_LIKE}
 <meta name="title" content="{SITENAME_TITLE}{PAGE_TITLE}" />
 {T_HEAD_STYLESHEET}
 {CSS}
 <link rel="search" type="application/opensearchdescription+xml" href="/improvedsearch.xml" title="{SITENAME}" />
 <link rel="search" type="application/opensearchdescription+xml" href="{URL_BOARD_DIRECTORY}/search/improvedsearch.xml" title="{SEARCH_FORUMS}" />
 <script src="{JQUERY_PATH}" type="text/javascript"></script>
 <script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>

 <!-- BEGIN switch_fb_login -->
 <script src="http://connect.facebook.net/{switch_fb_login.FB_LOCAL}/all.js" type="text/javascript"></script>
 <script src="{switch_fb_login.JS_FB_LOGIN}" type="text/javascript"></script>
 <!-- END switch_fb_login -->

 <!-- BEGIN switch_ticker -->
 <link type="text/css" rel="stylesheet" href="{JS_DIR}jquery/ticker/ticker.css" />
 <script src="{JS_DIR}jquery/ticker/ticker.js" type="text/javascript"></script>
 <!-- END switch_ticker -->

 <!-- BEGIN switch_ticker_new -->
 <script src="{JS_DIR}jquery/jcarousel/jquery.jcarousel.js" type="text/javascript"></script>
 <script type="text/javascript">//<![CDATA[
 /* Definir le sens de direction en fonction du panneau admin */
 var tickerDirParam = "{switch_ticker.DIRECTION}";
 var slid_vert = false;
 var auto_dir = 'next';
 var h_perso = parseInt({switch_ticker.HEIGHT});

 switch( tickerDirParam )
 {
 case 'top' :
 slid_vert = true;
 break;

 case 'left':
 break;

 case 'bottom':
 slid_vert = true;
 auto_dir = 'prev';
 break;

 case 'right':
 auto_dir = 'prev';
 break;

 default:
 slid_vert = true;
 }

 $(document).ready(function() {
 var w_cont = $('#fa_ticker_container').width();

 if (w_cont > 0)
 {
 $('#fa_ticker_container').width(w_cont);

 /* Affichage de la liste */
 $('#fa_ticker_content').css('display','block');

 /* Calcul des dimensions du conteneur et des elements */
 var width_max = $('ul#fa_ticker_content').width();
 var width_item = Math.floor(width_max / {switch_ticker.SIZE});
 var height_max = h_perso;

 /* Calcul de la hauteur maximale du conteneur en fonction des elements et de la hauteur personnalisee dans l'admin */
 $('ul#fa_ticker_content li').each( function () {
 if ($(this).height() > height_max)
 {
 height_max = $(this).height();
 }
 } );

 /* Redimensionnement des elements et des images trop larges */
 $('ul#fa_ticker_content li').width(width_item).height(height_max).find('img').each(function () {
 if ($(this).width() > width_item)
 {
 var ratio = $(this).width() / width_item;
 var new_height = Math.round($(this).height() / ratio);
 $(this).height(new_height).width(width_item);
 }
 });

 /* Redimensionnement et centrage du conteneur en mode vertical */
 if (slid_vert)
 {
 $('ul#fa_ticker_content').width(width_item).height(height_max).css('marginLeft','auto').css('marginRight','auto');
 }

 /* Initialisation du caroussel */
 $('#fa_ticker_content').jcarousel({
 vertical: slid_vert,
 wrap: 'circular',
 auto: {switch_ticker.STOP_TIME},
 auto_direction: auto_dir,
 scroll: 1,
 size: {switch_ticker.SIZE},
 height_max: height_max,
 animation: {switch_ticker.SPEED}
 });
 }
 else
 {
 $('ul#fa_ticker_content li:not(:first)').css('display','none');
 $('ul#fa_ticker_content li:first').css('list-style','none').css('text-align','center');
 }
 });
 //]]>
 </script>
 <!-- END switch_ticker_new -->

 <script type="text/javascript">//<![CDATA[
 $(document).ready(function(){
 <!-- BEGIN switch_enable_pm_popup -->
 pm = window.open('{U_PRIVATEMSGS_POPUP}', '_faprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');
 if(pm != null) { pm.focus(); }
 <!-- END switch_enable_pm_popup -->
 <!-- BEGIN switch_report_popup -->
 report = window.open('{switch_report_popup.U_REPORT_POPUP}', '_phpbbreport', 'HEIGHT={switch_report_popup.S_HEIGHT},resizable=yes,scrollbars=no,WIDTH={switch_report_popup.S_WIDTH}');
 if(report != null) { report.focus(); }
 <!-- END switch_report_popup -->
 <!-- BEGIN switch_ticker -->
 $(document).ready(function() {
 ticker_start({switch_ticker.HEIGHT}, {switch_ticker.SPACING}, {switch_ticker.SPEED}, '{switch_ticker.DIRECTION}', {switch_ticker.STOP_TIME});
 });
 <!-- END switch_ticker -->
 });

 <!-- BEGIN switch_login_popup -->
 var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = true, logInBackgroundClass = false;
 <!-- END switch_login_popup -->

 <!-- BEGIN switch_login_popup -->
 $(document).ready( function() {
 $(window).resize(function() {
 var windowWidth = document.documentElement.clientWidth;
 var popupWidth = $("#login_popup").width();
 var mypopup = $("#login_popup");

 $("#login_popup").css({
 "left": windowWidth/2 - popupWidth/2
 });
 });
 });
 <!-- END switch_login_popup -->
 //]]>
 </script>
 {GREETING_POPUP}
 <!-- BEGIN switch_ticker_new -->
 <style>
 .jcarousel-skin-tango .jcarousel-item {
 text-align:center;
 width: 10px;
 }

 .jcarousel-skin-tango .jcarousel-item-horizontal {
 margin-right: {switch_ticker.SPACING}px;
 }

 .jcarousel-skin-tango .jcarousel-item-vertical {
 margin-bottom: {switch_ticker.SPACING}px;
 }
 </style>
 <!-- END switch_ticker_new -->
 {HOSTING_JS}
 <!-- BEGIN google_analytics_code -->
 <script type="text/javascript">
 //<![CDATA[
 var _gaq = _gaq || [];
 _gaq.push(['_setAccount', '{G_ANALYTICS_ID}']);
 _gaq.push(['_trackPageview']);
 _gaq.push(['_trackPageLoadTime']);

 <!-- BEGIN google_analytics_code_bis -->
 _gaq.push(['b._setAccount', '{G_ANALYTICS_ID_BIS}']);
 _gaq.push(['b._trackPageview']);
 <!-- END google_analytics_code_bis -->

 (function() {
 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
 ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
 })();
 //]]>
 </script>
 <!-- END google_analytics_code -->
</head>
<body background="{T_BODY_BACKGROUND}" bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}">
 <div class="corps_sanct"/>
 <div class="reap_head"/>
  <div class="header_sanct"/>
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
<div id="tfa_cycle">
 
<div class="tfa_cycle_content">
 
<div class="my_news">
 <span class="imgix"><img class="opacite_8" src="http://i55.servimg.com/u/f55/18/64/09/84/110.png" alt="tfa" /></span>
</div>
 
</div>
 
<div class="tfa_cycle_content1">
 
<div class="my_news">
 <span class="imgix"><img class="opacite_8" src="http://i55.servimg.com/u/f55/18/64/09/84/210.png" alt="tfa" /></span>
</div>
 
</div>
 
<div class="tfa_cycle_content2">
 
<div class="my_news">
 <span class="imgix"><img class="opacite_8" src="http://i55.servimg.com/u/f55/18/64/09/84/310.png" alt="tfa" /></span>
</div>
 
</div>
 
<div class="tfa_cycle_content3">
 
<div class="my_news">
 <span class="imgix"><img class="opacite_8" src="http://i55.servimg.com/u/f55/18/64/09/84/410.png" alt="tfa" /></span>
         </div>

</div>
 
<div class="tfa_cycle_content4">
 
<div class="my_news">
 <span class="imgix"><img class="opacite_8" src="http://i55.servimg.com/u/f55/18/64/09/84/510.png" alt="tfa" /></span>
</div>
 
</div>
 
<div class="tfa_cycle_content5">
 
<div class="my_news">
 <span class="imgix"><img class="opacite_8" src="http://i55.servimg.com/u/f55/18/64/09/84/610.png" alt="tfa" /></span>
</div>
 
</div>
 
</div>
  </div>
  
      <div class="qeel-barre"> Sorciers - Loups-garous - Vampires - Sirènes - Familiers</div>
  
       <div class="qeel"><table width="100%" border="0" cellspacing="10" cellpadding="0">
         <tr><td width="30%"></td><td width="20%"><div class="qeel-bloc1"><iframe name="qeel" SRC="http://wizard-sanctuary-rpg.forumactif.org/h2-variable-qeel" FRAMEBORDER="no" scrolling="no" width="150px" height="130px" ></iframe></div></td><td width="50%"><div class="qeel-bloc2"><span class="gensmall">{L_CONNECTED_MEMBERS}
           </span></div></td></tr>
</table>
  
  </div>
  
  <!-- BEGIN hitskin_preview -->
 <div id="hitskin_preview" style="display: block;">
 <h1><img src="http://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> Hit<em>skin</em>.com</h1>
 <div class="content">
 <p>
 {hitskin_preview.L_THEME_SITE_PREVIEW}
 <br />
 <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
 </p>
 </div>
 </div>
 <!-- END hitskin_preview -->

 <!-- BEGIN switch_login_popup -->
 <div id="login_popup">
 <table class="forumline" width="{LOGIN_POPUP_WIDTH}" height="{LOGIN_POPUP_HEIGHT}" border="0" cellspacing="1" cellpadding="0">
 <tr height="25">
 <td class="catLeft">
 <span class="genmed module-title">{SITENAME}</span>
 </td>
 </tr>
 <tr height="{LOGIN_POPUP_MSG_HEIGHT}">
 <td class="row1" align="left" valign="top">
 <div id="login_popup_buttons">
 <form action="{S_LOGIN_ACTION}" method="get">
 <input type="submit" class="mainoption" value="{L_LOGIN}" />
 <input type="button" class="mainoption" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
 <input id="login_popup_close" type="button" class="button" value="{L_DONT_DISPLAY_AGAIN}" />
 </form>
 </div>
 <span class="genmed">{LOGIN_POPUP_MSG}</span>
 </td>
 </tr>
 </table>
 </div>
 <!-- END switch_login_popup -->

 <a name="top"></a>
 {JAVASCRIPT}

 <table class="bodylinewidth" width="{T_BODY_TABLE_WIDTH}" cellspacing="0" cellpadding="10" border="0" align="center">
 <tr>
 <td class="bodyline">
 <table width="100%" cellspacing="0" cellpadding="0" border="0">
 <tr>
 <!-- BEGIN switch_logo_left -->
 <td><a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
 <!-- END switch_logo_left -->
 <td align="center" width="100%" valign="middle">
 <!-- BEGIN switch_logo_center -->
 <a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a>
 <br />
 <!-- END switch_logo_center -->
 <div class="maintitle">{MAIN_SITENAME}</div>
 <br />
 <span class="gen">{SITE_DESCRIPTION}<br />  </span>
 </td>
 <!-- BEGIN switch_logo_right -->
 <td><a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
 <!-- END switch_logo_right -->
 </tr>
 </table>

 <div class="vertical_nav">{GENERATED_NAV_BAR}</div>

 <div style="clear: both;"></div>

 <!-- BEGIN switch_ticker_new -->
 <div id="fa_ticker_block" style="margin-top:4px;margin-bottom:4px;">
 <table width="100%" border="0" cellspacing="0" cellpadding="0" class="forumline">
 <tr>
 <td align="left" class="row1">
 <div id="fa_ticker_container">
 <ul id="fa_ticker_content" class="jcarousel-skin-tango" style="display:none;">
 <!-- BEGIN ticker_row -->
 <li>{switch_ticker.ticker_row.ELEMENT}</li>
 <!-- END ticker_row -->
 </ul>
 </div>
 </td>
 </tr>
 </table>
 </div>
 <!-- END switch_ticker_new -->

 <!-- BEGIN switch_ticker -->
 <div id="fa_ticker_block" style="margin-top:4px;margin-bottom:4px;">
 <table width="100%" border="0" cellspacing="0" cellpadding="0" class="forumline">
 <tr>
 <td align="left" class="row1">
 <div id="fa_ticker_container">
 <div id="fa_ticker" style="height:{switch_ticker.HEIGHT}px;">
 <div class="fa_ticker_content">
 <!-- BEGIN ticker_row -->
 <div>{switch_ticker.ticker_row.ELEMENT}</div>
 <!-- END ticker_row -->
 </div>
 </div>
 </div>
 </td>
 </tr>
 </table>
 </div>
 <!-- END switch_ticker -->

 <div id="page-body">
 <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
 <table cellpadding="0" cellspacing="0" width="100%" class="three-col">
 <tbody>
 <tr>
 <td valign="top" width="{C1SIZE}">
 <div id="{ID_LEFT}">
 <!-- BEGIN giefmod_index1 -->
 {giefmod_index1.MODVAR}
 <!-- BEGIN saut -->
 <div style="height:{SPACE_ROW}px"></div>
 <!-- END saut -->
 <!-- END giefmod_index1 -->
 </div>
 </td>
 <td valign="top" width="100%">
<!-- BEGIN html_validation -->
 </td>
 </tr>
 </tbody>
 </table>
 </div>
 </div>
 </td>
 </tr>
 </table>
</body>
</html>
<!-- END html_validation -->

et le codage associé pour la création du qeel:
Code:
.qeel{
width: 897px;
height: 150px;
background-image: url(http://sd-2.archive-host.com/membres/up/129749460537792328/qeel.png);
background-repeat: no-repeat;
  margin-left: 55px;
}

.qeel-barre{
width: 897px;
height: 30px;
background-image: url(http://i55.servimg.com/u/f55/18/64/09/84/barre110.png);
margin-top: -10px;
margin-left: 55px;
text-align: center;
}

.qeel-bloc1{
height: 130px;
background-color:rgba(20,15,13,0.5) !important;
border: 1px solid #2d271d;
box-shadow: 0px 0px 5px #4c4232;
margin: 3px;
}

.qeel-bloc2{
height: 130px;
background-color:rgba(20,15,13,0.5) !important;
  border: 1px solid #2d271d;
box-shadow: 0px 0px 5px #4c4232;
text-align: justify;
padding: 3px;
margin: 3px;
overflow: auto;
}

Le tout visible sur mon forum à cette adresse: http://wizard-sanctuary-rpg.forumactif.org/
Le qeel en question se trouve donc au dessus des catégories, juste sous le slide. Les membres connectés sont censé apparaitre dans la case vide à côté des stats mais.. rien. Si quelqu'un avait donc la solution à mon problème... Merci d'avance =)


Dernière édition par Lady doll le Mer 22 Jan 2014 - 18:05, édité 1 fois
Lady doll

Lady doll
***

Féminin
Messages : 119
Inscrit(e) le : 02/11/2011

http://witchcraft-rpg.forumactif.com/
Lady doll a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par [Nihil] Mer 15 Jan 2014 - 21:06

Effectivement cela est du au changement de template.
Mais tu peux régler ce problème en jQuery grâce à ceci : http://api.jquery.com/load/
[Nihil]

[Nihil]
Membre habitué

Messages : 1215
Inscrit(e) le : 10/12/2009

https://forum.forumactif.com
[Nihil] a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par Lady doll Jeu 16 Jan 2014 - 11:37

Bonjour Nihil, merci pour votre aide... j'ai juste un...petit soucis... je ne comprend rien à l'anglais et donc je ne sais pas du tout ce qu'il faut faire et c'est donc difficile pour moi de mettre ceci en place xD
Lady doll

Lady doll
***

Féminin
Messages : 119
Inscrit(e) le : 02/11/2011

http://witchcraft-rpg.forumactif.com/
Lady doll a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par [Nihil] Jeu 16 Jan 2014 - 14:23

Tu peux lire ceci pour t'aider: http://fr.openclassrooms.com/informatique/cours/un-site-web-dynamique-avec-jquery/exemple-d-utilisation-de-load

Le principe :
1/ tu places ton QEEL sur l'index, avec un #id pour pouvoir le retrouver facilement.
2/ Dans overall_header, tu crées une div avec un #id. C'est dedans qu'ira ton QEEL.
3/ Avec load en jquery, tu charges le contenu de l'#id du QEEL de la page d'index à l'intérieur de l'#id de la div dans l'overall_header.
[Nihil]

[Nihil]
Membre habitué

Messages : 1215
Inscrit(e) le : 10/12/2009

https://forum.forumactif.com
[Nihil] a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par Lady doll Jeu 16 Jan 2014 - 15:17

J'ai regarder le tutoriel et... oh je suis vraiment désolé Nihil je n'y comprends absolument rien. Malheureuse c'est d'un tout autre niveau, cela touche à des choses que je n'aie jamais aborder avant dans le design de mes forums... c'est un peu du javanais pour moi ^^"
N'y a t-il pas un moyen plus simple de remédier à mon problème ? d'autant que mon qeel sort du cadre, c'est assez déroutant, j'ai essayer plusieurs choses pour le mettre au bon endroit et rien n'y fait... vous disiez que cela provenait du changement de templates, comment cela se fait-il ? avez vous une explication qui me permettrait de mieux aborder la chose, de la comprendre ?
Lady doll

Lady doll
***

Féminin
Messages : 119
Inscrit(e) le : 02/11/2011

http://witchcraft-rpg.forumactif.com/
Lady doll a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par [Nihil] Jeu 16 Jan 2014 - 17:28

Oui c'est vrai que ça demande quand même de comprendre bien ce que l'ont fait, c'est bête de ma part de proposer cela comme ça ^^

J'ai d'abord une question, le but est il de mettre ce QEEL sur toutes les pages ? Ou bien juste de le mettre en haut de l'index Smile?

Pour ce qui est du QEEL qui sort, c'est normal. Normalement un peu plus loin dans overall_header il y a une balise table qui s'ouvre, avec la class "bodylinewith". Il faut que le QEEL soit à l'intérieur pour ne pas sortir Smile
[Nihil]

[Nihil]
Membre habitué

Messages : 1215
Inscrit(e) le : 10/12/2009

https://forum.forumactif.com
[Nihil] a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par Lady doll Jeu 16 Jan 2014 - 18:40

En tout cas c'est tout de même très gentil de prendre le temps de m'aider !
Alors, oui le qeel doit apparaitre sur toute les pages. Jai trouvé la balise en question qui contient un tableau visiblement, le soucis étant que j'ai peur de foutre tout ça en l'air par une fausse manip'... Mais pour le coup je suis étonnée que le slide lui se tienne au bon endroit et que le qeel lui se décale comme ça, sachant que les deux ne sont donc pas au bon endroit si je suit bien ce que vous me dites =)
Lady doll

Lady doll
***

Féminin
Messages : 119
Inscrit(e) le : 02/11/2011

http://witchcraft-rpg.forumactif.com/
Lady doll a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par [Nihil] Jeu 16 Jan 2014 - 20:12

En fait, le slide se centre dans son CSS il a une largeur définie (width) et que ses marges ont la valeur auto. Pour centrer un élément en CSS, il suffit de lui définir une largeur et des marges automatiques. Exemple :
Code:
.qeel {
    background-image: url("http://sd-2.archive-host.com/membres/up/129749460537792328/qeel.png");
    background-repeat: no-repeat;
    height: 150px;
    margin: auto; /* margin auto pour centrer (ne pas oublier la largeur définie */
    width: 897px;
}
[Nihil]

[Nihil]
Membre habitué

Messages : 1215
Inscrit(e) le : 10/12/2009

https://forum.forumactif.com
[Nihil] a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par Lady doll Jeu 16 Jan 2014 - 20:26

cela marche parfaitement Nihil, merci beaucoup! Je me sent vraiment idiote ne pas avoir pensé à cela alors je l'aie déjà utilisé... Et concernant les membres connectés qui n'apparaissent pas, avez une solution ? aurais-je fais une erreur dans le template ?
Lady doll

Lady doll
***

Féminin
Messages : 119
Inscrit(e) le : 02/11/2011

http://witchcraft-rpg.forumactif.com/
Lady doll a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par [Nihil] Jeu 16 Jan 2014 - 20:46

Le problème vient du faire que la variable qui gère l'affichage des membres connectés {L_CONNECTED_MEMBERS} ne fonctionne pas dans le template overall_header. Elle fonctionne seulement dans le template index_body il me semble.
[Nihil]

[Nihil]
Membre habitué

Messages : 1215
Inscrit(e) le : 10/12/2009

https://forum.forumactif.com
[Nihil] a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par Lady doll Jeu 16 Jan 2014 - 21:05

ah c'est étrange sur un autre de mes forums le qeel est dans le footer via le templata overall_footer_end et cela marchait bien, je me suis dit que ça marcherait dans un autre template aussi =)
Lady doll

Lady doll
***

Féminin
Messages : 119
Inscrit(e) le : 02/11/2011

http://witchcraft-rpg.forumactif.com/
Lady doll a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par [Nihil] Jeu 16 Jan 2014 - 22:12

Tiens, cela m'intéresse, pourrais tu me copier / coller ce template overall_footer_end où cela marchait Smile ?
[Nihil]

[Nihil]
Membre habitué

Messages : 1215
Inscrit(e) le : 10/12/2009

https://forum.forumactif.com
[Nihil] a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par Lady doll Jeu 16 Jan 2014 - 22:20

Bien sûr, si vous voulez même voir avec plus de précision, voilà le lien du forum ainsi vous verrez par vous même le footer en question: http://nerye.forumactif.org/

le template:
Code:
<!-- BEGIN html_validation -->
<!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">
<body>
<table>
  <tr>
      <td>
        <div>
            <div>
              <div>
<!-- END html_validation -->
              </div>
            </div>
            <!-- BEGIN switch_footer_links -->
            <div align="center">
              <div class="gen">
                  <!-- BEGIN footer_link -->
                    <!-- BEGIN switch_separator --> | <!-- END switch_separator -->
                    <a name="bottom" class="copyright" href="{switch_footer_links.footer_link.U_FOOTER_LINK_HREF}" rel="{switch_footer_links.footer_link.FOOTER_LINK_REL}" target="{switch_footer_links.footer_link.FOOTER_LINK_TARGET}" title="{switch_footer_links.footer_link.L_FOOTER_LINK_TITLE}">{switch_footer_links.footer_link.L_FOOTER_LINK_TEXT}</a>
                  <!-- END footer_link -->
              </div>
            </div>
            <!-- END switch_footer_links -->
        </div>
        {PROTECT_FOOTER}
      </td>
  </tr>
</table>
<div class="reap_foot"/>
 <div class="foot_Nerye"><br/>
    <ul id="menu"> 
        <li><a href="#">Maître du jeu</a> 
            <ul> 
                <li><a href="http://nerye.forumactif.org/g2-moderateurs" class="gr1">Khëradashulzâmn</a></li> 
            </ul> 
        </li><li><a href="#">Humains</a> 
            <ul> 
                <li><a href="http://nerye.forumactif.org/g8-melboriens" class="gr2">Melboriens</a></li> 
                <li><a href="http://nerye.forumactif.org/g9-kharvarims" class="gr3">Kharvarîms</a></li> 
                <li><a href="http://nerye.forumactif.org/g10-ilnhedrie" class="gr4">Ilnhedrins</a></li> 
                <li><a href="http://nerye.forumactif.org/g11-sorcieres" class="gr5">Sorcières</a></li> 
            </ul> 
        </li><li><a href="#">Ethérés</a> 
            <ul> 
                <li><a href="http://nerye.forumactif.org/g12-haures" class="gr6">Haures</a></li> 
                <li><a href="http://nerye.forumactif.org/g13-aigues" class="gr7">Aigues</a></li> 
               
            </ul> 
        </li><li><a href="#">Khëradas</a> 
            <ul> 
                <li><a href="http://nerye.forumactif.org/g7-kheradas" class="gr8">Khëradas</a></li> 
                               
            </ul> 
        </li><li><a href="#">Szorthakkirs</a> 
            <ul> 
                <li><a href="http://nerye.forumactif.org/g4-szortakkirs" class="gr9">Szorthakkirs</a></li> 
                               
            </ul> 
        </li>     
    </ul>
   <table width="890px" border="0" cellspacing="0" cellpadding="0" align="center">
      <tr>
         <td width="50%" border="1" cellspacing="0" cellpadding="0" align="center">
                <table width="99%" border="0" cellspacing="2">
                 <tr>
                  <td width="25%"><div style=" padding: 0px;"><div style="font-size: 18px; font-family: Cinzel Decorative;color: #E1E1E1;">Navigation</div>
                     <a style="font-size: 11px;color: #C0C0C0 !important;" href="http://nerye.forumactif.org">☽ Accueil</a>
                     <br /> <a style="font-size: 11px;color: #C0C0C0 !important;" href="http://nerye.forumactif.org/faq">☽ Foire aux questions</a>
                     <br /> <a style="font-size: 11px;color: #C0C0C0 !important;" href="http://nerye.forumactif.org/search?tt=1">☽ Rechercher</a>
                     <br /> <a style="font-size: 11px;color: #C0C0C0 !important;" href="http://nerye.forumactif.org/memberlist?tt=1">☽ Nos membres</a>
                     <br /> <a style="font-size: 11px;color: #C0C0C0 !important;" href="http://nerye.forumactif.org/groups?tt=1">☽ Nos Groupes</a>
                     </div>
                   </td>
                  <td width="25%"><div style=" padding: 0px;"><div style="font-size: 18px; font-family: Cinzel Decorative; color: #E1E1E1;">Votre compte</div>
                     <a style="font-size: 11px;color: #C0C0C0 !important;" href="http://nerye.forumactif.org/profile?mode=editprofile">☽ Votre profil</a>
                     <br /> <a style="font-size: 11px;color: #C0C0C0 !important;" href="http://nerye.forumactif.org/privmsg?folder=inbox">☽ Votre messagerie</a>
                     <br /> <a style="font-size: 11px;color: #C0C0C0 !important;" href="http://nerye.forumactif.org/login">☽ Vous connecter</a>
                     <br /> <a style="font-size: 11px;color: #C0C0C0 !important;" href="http://nerye.forumactif.org/login?logout">☽ Vous déconnecter</a>
                      <br /> <a style="font-size: 11px;color: #C0C0C0 !important;" href="http://nerye.forumactif.org/register">☽ Nous rejoindre ?</a></div>
                  </td>
                 </tr>
            </table>
         </td>
         <td width="50%" border="1" cellspacing="0" cellpadding="0" align="center">
                          <div style="margin-top:-45px; margin-left: -15px;">  <a href="http://www.root-top.com/topsite/heroicfantasy/in.php?ID=1499" class="postlink" target="_blank" rel="nofollow"><img src="http://i71.servimg.com/u/f71/18/50/78/40/top110.png" border="0"  class="transpa" alt=""/></a> <a href="http://www.root-top.com/topsite/ladydoll/in.php?ID=1" class="postlink" target="_blank" rel="nofollow"><img src="http://i71.servimg.com/u/f71/18/50/78/40/top310.png" border="0"  class="transpa" alt=""/></a> <a href="http://www.root-top.com/topsite/velusia/in.php?ID=5450" class="postlink" target="_blank" rel="nofollow"><img src="http://i71.servimg.com/u/f71/18/50/78/40/top410.png" border="0"  class="transpa" alt=""/></a> <a href="http://en.root-top.com/toplist/hoglard/in.php?ID=5003" class="postlink" target="_blank" rel="nofollow"><img src="http://i71.servimg.com/u/f71/18/50/78/40/top510.png" border="0"  class="transpa" alt=""/></a> </div> <div style="margin-top: -25px; margin-left:250px;"> <a href="http://www.frole-pbf.net/index.php?showpage=list&id=485" class="postlink" target="_blank" rel="nofollow"><img src="http://i71.servimg.com/u/f71/18/50/78/40/frole10.png" border="0" class="transpa" alt="" /></a> <a href="http://www.tourdejeu.net/annu/fichejeu.php?id=10042" class="postlink" target="_blank" rel="nofollow"><img src="http://i71.servimg.com/u/f71/18/50/78/40/tdj10.png" border="0" class="transpa" alt="" /></a> </div>
                          <br/>
                          <div id="accueil1"><br/>
               <div id="accueil2"><br/>
                  <div id="accueil3">
                     <table>
                           <tr>
                               <td><div style="margin-top: -45px; margin-left: -40px;">
                              <span class="ongl1"><a href="#accueil1"><img src="http://i55.servimg.com/u/f55/18/50/78/40/stats210.png" border="0" alt="" /></a></span>
                              <span class="ongl2"><a href="#accueil2"><img src="http://i55.servimg.com/u/f55/18/50/78/40/lastco10.png" border="0" alt="" /></a></span>
                              <span class="ongl3"><a href="#accueil3"><img src="http://i55.servimg.com/u/f55/18/50/78/40/part10.png" border="0" alt="" /></a></span>
                                                                                  </div></td>
                              <td><div style="margin-top: -50px;margin-left: -50px;">
                                 <div id="content1">
                                    <div id="content2">
                                       <div class="info_accueil"><span class="membre-co">
          <table>{L_CONNECTED_MEMBERS}</table>
        </span></div>
                                    </div>
                                    <div id="content3">
                                       <div class="info_accueil"><a href="http://memories-of-that-day.forumactif.org" target="_blank" title="Memories of that Day"><img src="http://i43.tinypic.com/rsdm35.png"></a> <a href="http://magic-kingdoms.forumactif.org/"><img src="http://imagesup.org/images11/1381698613-kingdoms-88.jpg"border="0"></a> <a href="http://archipel.forums-actifs.com/" target="_blank" title="ARCHIPEL"><img src="http://i82.servimg.com/u/f82/17/44/90/96/bouton10.png" /></a> <a href="http://adariel.forumactif.com/"><img src="http://imageshack.us/a/img513/5576/kv9.png"border="0"></a> <a href="http://diesirae.leforumgratuit.com/" target="_blank" title="Dies Irae"><img src="http://i30.servimg.com/u/f30/17/70/34/64/bouton11.png" /></a> <a href="http://ex-odyss.bbactif.com/"><img src="http://img15.hostingpics.net/pics/9488408831button.png"border="0"></a> <a href="http://royaumedelaryskanir.forumsrpg.com/"><img src="http://i76.servimg.com/u/f76/17/94/18/74/88_31_10.jpg"border="0"></a> <a href="http://reve-inverness.forumactif.com/" alt= "Les Rêves d'Inverness" target="_blank"><img src="http://img11.hostingpics.net/pics/932564logo.png" alt="Les Rêves d'Inverness"></a> <a href="http://aeoris.forumgratuit.org/"><img src="http://i40.servimg.com/u/f40/15/90/41/80/bouton20.jpg"></a> <a href="http://madelle.1fr1.net/" class="postlink"><img src="http://img15.hostingpics.net/pics/2849998831.png" alt="" border="0"></a> <a href="http://vampiredarkages.forumactif.org/"><img src="http://img15.hostingpics.net/pics/6499178831.jpg" /> <a href="http://arpenteur.forumactif.com/"><img src="http://i35.servimg.com/u/f35/16/56/94/85/88x3110.jpg"></a> <a href="http://valhistar.forumgratuit.fr" title="Valhistar"><img src="http://illiweb.com/fa/pbucket.gif" alt="Valhistar" border="0" /></a> <a href="http://les4royaumes.forumperso.com/" class="postlink" target="_blank" rel="nofollow"><img src="http://img4.hostingpics.net/pics/362805logoistheria2.png" border="0" alt="" /></a> <a href="http://duerena.forums-actifs.com/" class="postlink" target="_blank" rel="nofollow"><img src="http://i55.servimg.com/u/f55/16/62/41/44/88_foi10.png" border="0" alt="" /></a> <a href="http://vampiremasca.forumactif.org"><img src="http://rome.jeuforum.fr/forum/images/partenaires/vm.png"border="0"></a>
           
            </div>
                                    </div>
                                                                                          <div class="info_accueil"><span class="membre-stat">{TOTAL_USERS}.<br />{TOTAL_POSTS}.</span>
        <br />
        <span class="qeelnu31_norm">{NEWEST_USER}<br />
          </span>
        <br />
        <span class="usernu31_online">{TOTAL_USERS_ONLINE}</span><br />
        <span class="usernu31_list">{LOGGED_IN_USER_LIST}</span>
      </span>
                                                                                          </div>
                           
                                 </div>
                                                                                  </div></td>
                             </tr>         
                     </table>
                  </div>
               </div>
            </div>


         </td>
      </tr>
   </table>
   </div>
        </div>
<script type="text/javascript">
//<![CDATA[
  fa_endpage();
//]]>
</script>
</body>

</html>

Oh hey je me permet de citer un autre forum où le qeel est placé en haut du forum: http://www.elegance-temptation.com/
C'est donc possible de mettre les variables du qeel dans d'autres templates, reste à savoir pourquoi sur mon forum cela n'apparait pas xD
Lady doll

Lady doll
***

Féminin
Messages : 119
Inscrit(e) le : 02/11/2011

http://witchcraft-rpg.forumactif.com/
Lady doll a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par [Nihil] Ven 17 Jan 2014 - 18:46

Oh hey je me permet de citer un autre forum où le qeel est placé en haut du forum: http://www.elegance-temptation.com/
Oui le QEEL est en haut, mais pas placé sur toutes les pages, il n'est donc pas dans le template overall_header. Wink

Bien sûr, si vous voulez même voir avec plus de précision, voilà le lien du forum ainsi vous verrez par vous même le footer en question: http://nerye.forumactif.org/
Oui le QEEL fonctionne sur l'index dans le template overall_footer_begin (mais pas overall_footer_end par exemple) mais sur les autres pages la variable {L_CONNECTED_MEMBERS} ne fonctionne pas de toutes les façons ^^
Spoiler:
[Nihil]

[Nihil]
Membre habitué

Messages : 1215
Inscrit(e) le : 10/12/2009

https://forum.forumactif.com
[Nihil] a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par Lady doll Ven 17 Jan 2014 - 21:12

aaaah d'accord, dans ce cas dans quel templates devrais-je déplacer mon slide et mon qeel et à quel endroit de ce template ? =)
Lady doll

Lady doll
***

Féminin
Messages : 119
Inscrit(e) le : 02/11/2011

http://witchcraft-rpg.forumactif.com/
Lady doll a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par Lady doll Mar 21 Jan 2014 - 22:15

up!
Lady doll

Lady doll
***

Féminin
Messages : 119
Inscrit(e) le : 02/11/2011

http://witchcraft-rpg.forumactif.com/
Lady doll a été remercié(e) par l'auteur de ce sujet.

Résolu Re: soucis qeel

Message par Lady doll Mer 22 Jan 2014 - 18:05

bon eh bien finalement une amie m'a aidé à régler le soucis! encore merci de votre aide Nihil =)
Lady doll

Lady doll
***

Féminin
Messages : 119
Inscrit(e) le : 02/11/2011

http://witchcraft-rpg.forumactif.com/
Lady doll a été remercié(e) par l'auteur de ce sujet.

Voir le sujet précédent Voir le sujet suivant Revenir en haut

- Sujets similaires

Permission de ce forum:
Vous ne pouvez pas répondre aux sujets dans ce forum