Modification affichage info - Version imprimable +- MyBB.support, le portail francophone de MyBB (https://mybb.support) +-- Forum : MyBB.fr (https://mybb.support/forum-1.html) +--- Forum : Support (https://mybb.support/forum-5.html) +--- Sujet : Modification affichage info (/thread-4390.html) |
Modification affichage info - Kimoos - 05-07-2011 Salut je voudrais savoir comment mettre chaque info qui se trouve au dessous de l'avatar dans un rectangle comme dans l'image . RE: Modification affichage info - exdiogene - 05-07-2011 Une des solutions possibles serait de changer dans le template "postbit_author_user" : Code PHP : {$lang->postbit_posts} {$post['postnum']}<br /> Code PHP : <div style="border:#c0c0c0 solid 1px">{$lang->postbit_posts} {$post['postnum']}</div> RE: Modification affichage info - Kimoos - 06-07-2011 Merci , et comment on ajoute le petit espace après chaque ligne ? ( le </br> donne un grand espace ) RE: Modification affichage info - exdiogene - 06-07-2011 En remplaçant : style="border:#c0c0c0 solid 1px" par : style="spacing:2px; border:#c0c0c0 solid 1px" Pour un espace intérieur en plus il faudrait : style="padding:2px; spacing:2px; border:#c0c0c0 solid 1px" |