Rechercher
 
 

Résultats par :
 


Rechercher Recherche avancée

Créer un forum
Créer un forum
Derniers sujets
Flux RSS

Yahoo! 
Google Reader 
MSN 
AOL 
NewsGator 
Rojo 
Bloglines 


Marque-page social

  http://illiweb.com/fa/social_bookmarking/digg.gif   http://illiweb.com/fa/social_bookmarking/delicious.gif   http://illiweb.com/fa/social_bookmarking/reddit.gif   http://illiweb.com/fa/social_bookmarking/stumbleupon.gif   http://illiweb.com/fa/social_bookmarking/slashdot.gif   http://illiweb.com/fa/social_bookmarking/furl.gif   http://illiweb.com/fa/social_bookmarking/yahoo.gif   http://illiweb.com/fa/social_bookmarking/google.gif   http://illiweb.com/fa/social_bookmarking/blinklist.gif   http://illiweb.com/fa/social_bookmarking/blogmarks.gif   http://illiweb.com/fa/social_bookmarking/technorati.gif 

Conservez et partagez l'adresse de Forum gratuit : Le forum des forums actifs sur votre site de social bookmarking

Qui est en ligne ?
Il y a en tout 100 utilisateurs en ligne :: 7 Enregistrés, 0 Invisible et 93 Invités :: 2 Moteurs de recherche

Béhième, Dark Ezeckiel, eddy49, missx, Mnuarii, Naïmess, Paradise

[ Voir toute la liste ]


Le record du nombre d'utilisateurs en ligne est de 1264 le Mar 26 Fév - 16:26

Page d'accueil ; tableau.

Poster un nouveau sujet   Répondre au sujet

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

Résolu Page d'accueil ; tableau.

Message par ¤Christie¤ le Dim 1 Nov - 22:55

Bonsoir !
Je galère depuis un petit moment pour faire la page d'accueil de mon forum.
Ce que je voudrais est assez complexe à expliquer, alors comme d'habitude, j'ai fait une illustration pour vous montrer exactement ce que j'aimerai. x]



Donc, voilà. J'ai l'image de base, comme vous pouvez le voir. x]
Mais je n'arrive pas à faire le tableau, or, je l'ai vu sur ce magnifique forum : Mokkori Hunter.
Je ne sais vraiment rien faire question tableau :
- les colonnes/lignes
- comment faire pour qu'il y a deux lignes sur une colonne et des fois seulement une ligne.
Bref, débutante.
Merci beaucoup d'avance ! Very Happy


Dernière édition par ¤Christie¤ le Mer 4 Nov - 11:27, édité 1 fois

¤Christie¤
# Tropactif #

Féminin
Nombre de messages: 1056
Points: 1345
Date d'inscription: 09/09/2006
Niveau d'alerte: Aucun avertissement

Voir le profil de l'utilisateur http://gorgeous-art.forumactif.com/

Revenir en haut Aller en bas

Résolu Re: Page d'accueil ; tableau.

Message par Makoto Yuki le Dim 1 Nov - 23:26

Bonsoir,
Pour faire un tableau similaire à celui du forum que vous montrez, vous devez utiliser ces codes: Dans votre HTML
Code:
<table cellspacing="2" cellpadding="2" border="0" style="width: 100%; text-align: left; margin-left: auto; margin-right: auto;">
<tr>
<td style="vertical-align: top; width: 50%;">
      <table cellspacing="2" cellpadding="2" border="0" style="width: 100%; text-align: left; margin-left: auto; margin-right: auto;">
            <tbody>
                  <tr>
                      <td style="width: 50%; text-align: center; vertical-align: top;"><span class="boxtitle">titre 1</span><div class="box">contenu 1</div>
</td>
                        <td style="width: 50%; text-align: center; vertical-align: top;"><span class="boxtitle">titre 2</span><div class="box">contenu 2</div>
</td>
</tr>
</tbody>
</table>
            <table cellspacing="2" cellpadding="2" border="0" style="width: 100%; text-align: left; margin-left: auto; margin-right: auto;">
              <tbody>
                  <tr>
<td style="width: 50%; text-align: center; vertical-align: top;" rowspan="1" colspan="1">
<span class="boxtitle">titre 3</span><div class="box">contenu 3<br />blablablablablabla<br />
Blablablablablabla<br />
Blablablablablabla<br /></div>
</td>
</tr>
</tbody>
</table>
<table cellspacing="2" cellpadding="2" border="0" style="width: 100%; text-align: left; margin-left: auto; margin-right: auto;">
<tbody>
<tr>
<td style="width: 50%; text-align: center; vertical-align: top;" rowspan="1" colspan="1">
<span class="boxtitle">Titre 4</span><div class="box">contenu 4<br />blablablablablabla<br />
Blablablablablabla<br />
Blablablablablabla<br /></div>
</td>
</tr>
</tbody>
</table>
</td>
<td style="vertical-align: top; width: 50%;">
<table cellspacing="2" cellpadding="2" border="0" style="width: 100%; text-align: left; margin-left: auto; margin-right: auto;">
<tbody>
<tr>
<td style="width: 50%; vertical-align: top;"><span class="boxtitle">Titre 5</span>
<div class="box">-Contenu 5<br /> -faire des tableauX<br />-c'est ma passion dans la vie<br />-surtout à une heure du matin<br /></div>
</td>
<td style="vertical-align: top;"><span class="boxtitle">titre 6</span><div class="box">Contenu 6<br />Blablablablablabla<br />blablablablablabla<br />
Blablablablablabla<br />
Blablablablablabla<br /></div>
</td>
</tr>
<tr>
<td rowspan="1" colspan="2" style="width:100%;"><span class="boxtitle">titre 7</span><div class="box">Contenu 7<br />blablablablablabla<br />
Blablablablablabla<br />
Blablablablablabla<br /></div></td>
</tr>
</tbody>
</table>
</td>
</tr>
</table>
&Dans votre CSS (à modifier):
Code:
.box {
-moz-border-radius-bottomleft:5px;
-moz-border-radius-bottomright:5px;
-moz-border-radius-topleft:5px;
-moz-border-radius-topright:5px;
background-color:#F0F0F0;
color:#718C91;
font-size:11px;
margin:0;
padding:3px 10px;
}

.boxtitle {
-moz-border-radius-bottomleft:5px;
-moz-border-radius-bottomright:5px;
-moz-border-radius-topleft:5px;
-moz-border-radius-topright:5px;
background-color:#BEDCDC;
color:#F0F0F0;
display:block;
font-size:11px;
font-weight:bold;
margin:0 0 5px;
padding:3px 10px;
text-align:center;
text-decoration:none;
text-transform:uppercase;
}

Makoto Yuki
Aidactive
Aidactive

Féminin
Nombre de messages: 1049
Points: 1720
Date d'inscription: 30/05/2008
Niveau d'alerte: Aucun avertissement

Voir le profil de l'utilisateur

Revenir en haut Aller en bas

Résolu Re: Page d'accueil ; tableau.

Message par ¤Christie¤ le Dim 1 Nov - 23:33

Hello,
WOOW. T'es ma sauveuse. XD Sublime, c'est parfait. Je vais essayer d'arranger histoire de caser mon image, mais le code est exactement ce que j'espérais. Super rapide en prime. O__O Merci encore !
Je laisse juste ouvert le temps que je bidouille, afin d'être sûre. x]

¤Christie¤
# Tropactif #

Féminin
Nombre de messages: 1056
Points: 1345
Date d'inscription: 09/09/2006
Niveau d'alerte: Aucun avertissement

Voir le profil de l'utilisateur http://gorgeous-art.forumactif.com/

Revenir en haut Aller en bas

Résolu Re: Page d'accueil ; tableau.

Message par Makoto Yuki le Dim 1 Nov - 23:34

Héhé, mais de rien Rolling Eyes
Si tu as le moindre problème avec les codes, n'hésite pas...

Makoto Yuki
Aidactive
Aidactive

Féminin
Nombre de messages: 1049
Points: 1720
Date d'inscription: 30/05/2008
Niveau d'alerte: Aucun avertissement

Voir le profil de l'utilisateur

Revenir en haut Aller en bas

Résolu Re: Page d'accueil ; tableau.

Message par ¤Christie¤ le Dim 1 Nov - 23:47

Merci beaucoup. Very Happy

¤Christie¤
# Tropactif #

Féminin
Nombre de messages: 1056
Points: 1345
Date d'inscription: 09/09/2006
Niveau d'alerte: Aucun avertissement

Voir le profil de l'utilisateur http://gorgeous-art.forumactif.com/

Revenir en haut Aller en bas

Résolu Re: Page d'accueil ; tableau.

Message par ¤Christie¤ le Dim 1 Nov - 23:53

Wow, déjà un petit problème. Désolée, je fais un double-post, de peur de ne pas être remarquée sinon. x]
J'aimerais que les titres ne soient pas en majuscules... C'est possible ?
EDIT : Je parle toujours trop vite. XD J'ai trouvé finalement, merci encore. =D

¤Christie¤
# Tropactif #

Féminin
Nombre de messages: 1056
Points: 1345
Date d'inscription: 09/09/2006
Niveau d'alerte: Aucun avertissement

Voir le profil de l'utilisateur http://gorgeous-art.forumactif.com/

Revenir en haut Aller en bas

Résolu Re: Page d'accueil ; tableau.

Message par ¤Christie¤ le Mer 4 Nov - 11:27

Tout fonctionne parfaitement, merci beaucoup.

¤Christie¤
# Tropactif #

Féminin
Nombre de messages: 1056
Points: 1345
Date d'inscription: 09/09/2006
Niveau d'alerte: Aucun avertissement

Voir le profil de l'utilisateur http://gorgeous-art.forumactif.com/

Revenir en haut Aller en bas

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


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