Quote:
Originally posted by Webmasta XT
contact me on AIM plz!!
|
I'm not using AIM, sorry.
Quote:
Originally posted by Webmasta XT
can you explain how can I have two different kind of stars on two different styles?? plz, cuz I need the color mtach kind of thing, so I have made seprate stars for each style, I was wondering if its possible to do that...
|
It can be done. But you need for every style an extra images-folder!
Find in admin/functions.php:
PHP Code:
$sli = 0;
while ($sli < $post[starlevel]) {
$post[stars] .= "<img src=\"images/stars/$post[starimg].gif\" border=\"0\">";
++$sli;
}
and replace with:
PHP Code:
$sli = 0;
while ($sli < $post[starlevel]) {
$post[stars] .= "<img src=\"{imagesfolder}/stars/$post[starimg].gif\" border=\"0\">";
++$sli;
}
In announcement.php do the same. Now you have different stars for different styles.