ابتدا فایل زیر رو دانلود کنید و فایل colorizer.tpl.html رو در پوشه styles بریزید و فایل font.css رو دز styles/etchat_white بریزید
لینک====http://et-chat-mail.ir/up/do.php?id=19
خب حالا آموزش
وارد فایل MessageInserter.class.php بشید کد زیر رو پیدا کنید
//--- CHeck Style Hacking ...--------------------------
$my_color = htmlentities($_POST['color'], ENT_QUOTES, "UTF-8");
$my_bold = htmlentities($_POST['bold'], ENT_QUOTES, "UTF-8");
$my_italic = htmlentities($_POST['italic'], ENT_QUOTES, "UTF-8");
$pos1 = strrpos($my_color, ";");
$pos2 = strrpos($my_bold, ";");
$pos3 = strrpos($my_italic, ";");
if ($pos1 === false and $pos2 === false and $pos3 === false ) {
$style = "color:".htmlentities($_POST['color'], ENT_QUOTES, "UTF-8").";font-weight:".htmlentities($_POST['bold'], ENT_QUOTES, "UTF-8").";font-style:".htmlentities($_POST['italic'], ENT_QUOTES, "UTF-8").";";
}else{
$style = "color:#FF0000;font-weight:bold;font-style:normal";
}
/// End Check Style hacking -------------------------------------------------
و این کد رو جایگزین کنید
//--- CHeck Style Hacking ...--------------------------
$my_color = htmlentities($_POST['color'], ENT_QUOTES, "UTF-8");
$my_bold = htmlentities($_POST['bold'], ENT_QUOTES, "UTF-8");
$my_italic = htmlentities($_POST['italic'], ENT_QUOTES, "UTF-8");
$pos1 = strrpos($my_color, ";");
$pos2 = strrpos($my_bold, ";");
$pos3 = strrpos($my_italic, ";");
if ($pos1 === false and $pos2 === false and $pos3 === false ) {
$style = "color:".$_POST['color'].";font-weight:".$_POST['bold'].";font-style:".$_POST['italic']."; font-size:".$_POST['greendelsize']."; font-family:".$_POST['face'].";";
}else{
$style = "color:#FF0000;font-weight:bold;font-style:normal";
}
/// End Check Style hacking -------------------------------------------------
وارد chat.php بشید کد زیر رو پیدا کنید
self.win_color.setHTMLContent(self.win_color_content);
و این کد رو زیرش قرار بدید
//(Start) Font Art auswaehlen und in hidden-Inputs eintragen --------------------
$("kursiv").onclick = function(){
$("italic").value = ($("kursiv").checked) ? "italic" : "normal";
$('message').style.fontStyle = ($("kursiv").checked) ? "italic" : "normal";
}
$("fett").onclick = function(){
$("bold").value = ($("fett").checked) ? "bold" : "normal";
$('message').style.fontWeight = ($("fett").checked) ? "bold" : "normal";
}
$("family").onchange = function(){
var x = $("family").selectedIndex;
var y= $("family").options;
if (y[x].index=="0")
{
$('message').style.fontFamily = "tahoma";
$("face").value = "tahoma";
}else if (y[x].index=="1")
{
$('message').style.fontFamily = "BYekan";
$("face").value = "BYekan";
}else if (y[x].index=="2")
{
$('message').style.fontFamily = "BMorvarid";
$("face").value = "BMorvarid";
}else if (y[x].index=="3")
{
$('message').style.fontFamily = "BNarm";
$("face").value = "BNarm";
}
else if (y[x].index=="4")
{
$('message').style.fontFamily = "BSinaBold";
$("face").value = "BSinaBold";
} else if (y[x].index=="5")
{
$('message').style.fontFamily = "BTitrTGEBold";
$("face").value = "BTitrTGEBold";
}else if (y[x].index=="6")
{
$('message').style.fontFamily = "BZiba";
$("face").value = "BZiba";
}else if (y[x].index=="7")
{
$('message').style.fontFamily = "BKoodakBold";
$("face").value = "BKoodakBold";
}
}
$("size").onchange = function(){
var x = $("size").selectedIndex;
var y= $("size").options;
if (y[x].index=="0")
{
$('message').style.fontSize = "13px";
$("chatsize").value = "13px";
}else if (y[x].index=="1")
{
$('message').style.fontSize = "15px";
$("chatsize").value = "15px";
}else if (y[x].index=="2")
{
$('message').style.fontSize = "16px";
$("chatsize").value = "16px";
}else if (y[x].index=="3")
{
$('message').style.fontSize = "17px";
$("chatsize").value = "17px";
}
}
//(Stop) Font Art auswaehlen und in hidden-Inputs eintragen ---------------------
در همین فایل کد زیر رو پیدا کنید البته دو کد مثل هم هست شما اولین کد رو جایگزین کنید .
var css = "font-weight:" + $("bold").value + ";font-style:" + $("italic").value + ";color:" + $("color").value;
و اینو جایگزین کنید .
var css = "font-family:" + $("face").value + ";font-size:" + $("chatsize").value + ";font-weight:" + $("bold").value + ";font-style:" + $("italic").value + ";color:" + $("color").value;
فایل chat.php در پوشه etchat_white رو ویرایش کنید کد زیر را پیدا کنید .
<link href="styles/etchat_white/chat.css" rel="stylesheet" type="text/css"/>
و زیرش این کد رو قرار بدید .
<link href="styles/etchat_white/font.css" rel="stylesheet" type="text/css"/>
دوباره در همین فایل کد زیر رو پیدا کنید .
<input type="hidden" name="privat" id="privat" value="" />
<input type="hidden" name="bold" id="bold" value="normal" />
<input type="hidden" name="italic" id="italic" value="normal" />
و این کد رو زیرش قرار بدید .
<input type="hidden" name="face" id="face" value="BYekan" />
پس به همین دلیل ازتون ممنون میشیم که سوالات غیرمرتبط با این مطلب را در انجمن های سایت مطرح کنید . در بخش نظرات فقط سوالات مرتبط با مطلب پاسخ داده خواهد شد .