| 
 Police - Gérald59 -  08-09-2011
 
 Bonjour,
 
 Je me rappel plus ou il faut aller pour changer le style de police pour les titres des catégories et forums !!!
 
 
 RE: Police - Saphir -  08-09-2011
 
 Dans global.css, en mode d'édition avancée, pour changer la police tu rajoutes une propriété :
 
 
Code :
 font-family: XXXXX;
 En remplaçant XXXXX par le nom exact de la police, entourée de guillemets si elle contient une espace.
 
 Exemples :
 
 
Code :
 font-family: Arial;font-family: "Comic Sans MS";
 Ne met pas des polices trop bizarres, sachant qu'il faut que la police en question soit installée sur l'ordinateur du visiteur ; dans le cas contraire, il verrait toujours la police par défaut.
 
 
 RE: Police - exdiogene -  08-09-2011
 
 Dans la page index, pour les catégories c'est le template "forumbit_depth1_cat", pour les forums c'est "forumbit_depth2_forum".
 
 
 RE: Police - Gérald59 -  08-09-2011
 
 
  (08-09-2011, 15:13)exdiogene a écrit :  Dans la page index, pour les catégories c'est le template "forumbit_depth1_cat", pour les forums c'est "forumbit_depth2_forum". Voilà ce que j'ai, je trouve pas !!
 
 
 
Code :
 <tr><td colspan="7"><hr style="border: 0px solid #f5f5f5; color:#f5f5f5; background-color:#f5f5f5;margin:0px;padding:0px;"></td></tr><tr>
 <td  class="{$bgcolor}" valign="middle" align="center" style="white-space: nowrap;" width="10px"></td>
 <td class="{$bgcolor}" align="center" valign="middle" width="1"><img src="{$theme['imgdir']}/icon/{$forum['fid']}.gif" /><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" />   </td>
 <td  class="{$bgcolor}" valign="middle" align="center" style="white-space: nowrap;" width="10px"></td>
 <td class="{$bgcolor}" valign="middle">
 <strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}<br />Discussions: {$threads}{$unapproved['unapproved_threads']} <span class="smalltext">Messages:{$posts}{$unapproved['unapproved_posts']}</span>{$modlist}{$subforums}</div>
 </td>
 <td  class="{$bgcolor}" valign="middle" align="center" style="white-space: nowrap" width="10px"></td>
 <td valign="middle" width="350px" align="right" style="white-space: nowrap; margin:10px;">{$lastpost}</td>
 <td  class="{$bgcolor}" valign="middle" align="center" style="white-space: nowrap" width="10px"></td>
 </tr>
 <tr><td colspan="7"><hr style="border: 0px solid #6fa5c2; color:#6fa5c2; background-color:#6fa5c2;margin:0px;padding:0px; margin-top:10px;"></td></tr>
 
 
 
Code :
 <table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder"><thead>
 <tr>
 <td class="thead" colspan="7">
 <div class="expcolimage"><img src="{$theme['imgdir']}/{$expcolimage}" id="cat_{$forum['fid']}_img" class="expander" alt="{$expaltext}" title="{$expaltext}" /></div>
 <div><strong><a href="{$forum_url}">{$forum['name']}</a></strong><br /><div class="smalltext">{$forum['description']}</div></div>
 </td>
 </tr>
 </thead>
 <tbody style="{$expdisplay}" id="cat_{$forum['fid']}_e">
 
 {$sub_forums}
 
 </td>
 </tbody>
 </table>
 <br />
 
 
 
 |