<?php /* Changes every other comment to a different class */
if ('alt' == $oddcomment) $oddcomment = '';
else $oddcomment = 'odd';
?>
olan bölümü bulup
<?php /* Changes every other comment to a different class */
if ('alt' == $oddcomment) $oddcomment = 'odd';
else $oddcomment = 'alt';
?>
olarak değiştirin.
Style.css (stil dosyası) dosyasına aşağıdaki eklemeleri yapın.
ol.alt {
background-color: #EAF2EE;
/*istediğiniz renk kodunu girin*/
}
ol.odd {
background-color: #00ff00;
/*istediğiniz renk kodunu girin*/
}
ol.mycomment {
background-color: #EAF2EE;
/* istediğiniz renk kodunu yazın */
/*Bu renk yazının yazarının yorumlarının rengi olacak */
}