Si c'est pour utiliser dans ton forum, on peut prendre le CSS qui se trouve entre les balises style et les mettre dans le CSS du forum !
C'est à dire que tu enlèves dans ton message :
- Code:
<style>.fond {margin-left: auto; margin-right : auto; width: 550px; background-color: #3B1F2D; background-image: url(http://img11.hostingpics.net/pics/507602PATTERNDEUX.png); background-repeat: repeat; border-top:10px solid #3B1F2D; border-bottom: 10px solid #3B1F2D; border-left: 1px solid #3B1F2D; border-right: 1px solid #3B1F2D; border-radius: 0px 0px 10px 10px; box-shadow: 0px 0px 0px #3B1F2D;}.head {width: 550px; border-bottom: 10px solid #3B1F2D}.titre{transition: 2s ease; display: inline; color: #F6ECDB; font-family: 'Berkshire Swash', cursive; font-size: 35px; position: relative; top: -15px}.titre:hover{color: #3A1F2D} .soustitre{font-family: 'Playball', cursive; color: #3A1F2D; margin-left: auto; margin-right: auto; width: 550px; text-align: center; font-size: 25px; margin-bottom: -5px; transition: 2s ease;} .soustitre:hover{color: #F6ECDB} .bloc{background-color: #644A52; border-left: 2px solid #3B1F2D; border-right: 2px solid #3B1F2D; margin-right: auto; margin-left: auto; width: 500px; padding: 5px; text-align: justify; color: #A19D99; font-family: times new roman; font-size: 12px} .mef1,.mef2,.mef3,.mef4,.mef5,.mef6,.mef7 {color: #C8C6C4;text-shadow: 0px 0px 2px #C8C6C4; transition: 1s;}.mef1:hover {color: #CD3259;text-shadow: 0px 0px 2px #CD3259; }.mef2:hover {color: #E88124;text-shadow: 0px 0px 2px #E88124; }.mef3:hover {color: #EACF15;text-shadow: 0px 0px 2px #EACF15; }.mef4:hover {color: #78CC1C;text-shadow: 0px 0px 2px #78CC1C; }.mef5:hover {color: #35A0B7;text-shadow: 0px 0px 2px #35A0B7; }.mef6:hover {color: #2031C8;text-shadow: 0px 0px 2px #2031C8; }.mef7:hover {color: #C626BA;text-shadow: 0px 0px 2px #C626BA; }.icone{margin: auto; display: inline-block; border-radius: 50px 50px 50px 50px;border-top: 2px solid #3B1F2D; border-bottom: 2px solid #3B1F2D; transition: 2s; }.icone:hover{transform: rotate(-90deg); -moz-transform: rotate(-90deg); -webkit-transform: rotate(-90deg); -o-transform: rotate(-90deg); }.bulle span{position: absolute; top: auto; left: auto; width: 300px ; height: auto; display: none; background-color: #644A52; border-left: 2px solid #3B1F2D; border-right: 2px solid #3B1F2D; padding: 5px; text-align: justify; color: #A19D99; font-family: times new roman; font-size: 12px; }.bulle:hover span{display: block}</style>
Et tu rajoutes dans le CSS du forum :
- Code:
/* ---- DEBUT CADRES DE VALIDATION NEVER UTOPIA ----*/
.fond {
margin: auto;
width: 550px;
background-color: #3B1F2D;
background-image: url(http://img11.hostingpics.net/pics/507602PATTERNDEUX.png);
background-repeat: repeat;
border-top: 10px solid #3B1F2D;
border-bottom: 10px solid #3B1F2D;
border-left: 1px solid #3B1F2D;
border-right: 1px solid #3B1F2D;
border-radius: 0px 0px 10px 10px;
box-shadow: 0px 0px 0px #3B1F2D;
}
.soustitre {
font-family: 'Playball', cursive;
color: #3A1F2D;
margin: auto;
width: 550px;
text-align: center;
font-size: 25px;
margin-bottom: -5px;
transition: 2s ease;
}
.soustitre:hover {
color: #F6ECDB;
}
.bloc {
background-color: #644A52;
border-left: 2px solid #3B1F2D;
border-right: 2px solid #3B1F2D;
margin: auto;
width: 500px;
padding: 5px;
text-align: justify;
color: #A19D99;
font-family: "times new roman";
font-size: 12px;
}
.mef1,.mef2,.mef3,.mef4,.mef5,.mef6,.mef7 {
color: #C8C6C4;
text-shadow: 0px 0px 2px #C8C6C4;
transition: 1s;
}
.mef1:hover {
color: #CD3259;
text-shadow: 0px 0px 2px #CD3259;
}
.mef2:hover {
color: #E88124;
text-shadow: 0px 0px 2px #E88124;
}
.mef3:hover {
color: #EACF15;
text-shadow: 0px 0px 2px #EACF15;
}
.mef4:hover {
color: #78CC1C;
text-shadow: 0px 0px 2px #78CC1C;
}
.mef5:hover {
color: #35A0B7;
text-shadow: 0px 0px 2px #35A0B7;
}
.mef6:hover {
color: #2031C8;
text-shadow: 0px 0px 2px #2031C8;
}
.mef7:hover {
color: #C626BA;
text-shadow: 0px 0px 2px #C626BA;
}
/* ---- DEBUT CADRES DE VALIDATION NEVER UTOPIA ----*/
Maintenant, tu peux supprimer de ton message cette ligne là :
- Code:
<link href='http://fonts.googleapis.com/css?family=Berkshire+Swash|Playball&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
Est ce que tu comptes garder la même police pour les titres ?
Si oui, dans ton template
overall-header, on va repérer ceci :
- Code:
{CSS}
Et juste en dessous on met la ligne pour appeler la police :
- Code:
<link href='http://fonts.googleapis.com/css?family=Playball&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
Si non, tu as juste à personnaliser le CSS pour le titre. Il se trouve ici :
- Code:
.soustitre {
font-family: 'Playball', cursive;
color: #3A1F2D;
margin: auto;
width: 550px;
text-align: center;
font-size: 25px;
margin-bottom: -5px;
transition: 2s ease;
}
C'est la ligne avec
font-family qu'il faudra modifier.
Toutes ces modifications nous permettent d'avoir une meilleure base. Pour tes messages de validation, plus besoin de tout poster, seul le html restant suffit ! :)
Maintenant pour les versions avec différentes couleurs, comme tu peux le voir il y a une image de fond → https://2img.net/r/hpimg11/pics/507602PATTERNDEUX.png
Est ce que tu souhaites la colorer toi même dans différentes teinte ou pas ?