forum_link/new/new_lock/old/old_lock.gif to png

xeross

New Member
Hey,

I've made edits to the forum_link.gif, forum_new.gif, forum_new_lock.gif, forum_old.gif and forum_old_lock.gif. However these edits required them to be png's. Where can I change all occurences of the above to the same but with png extension ?, So far I've successfully changed them in my theme by editing the installation xml. However I can't do this with the main theme(some stuff is based on it in my theme.), So where can I easily find/replace them ? I've searched all files, and the entire database, But I couldn't find a thing.

Help appreciated.

Regards, Xeross

Edit: After some more searching I found it.
Lock plz
 
Just convert the images to gif format, its easyer;)

here is you an online image convertor;)
Code:
www.pictureresize.org/online-images-converter.html
 
it's in the templates, not database or php :rolleyes:

in template (category "Forum Home Templates") :

-> forumhome_forumbit_level1_post

search :
Code:
<img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" />

replace by :
Code:
<img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].png" alt="" border="0" id="forum_statusicon_$forum[forumid]" />

-> forumhome_forumbit_level2_post

search :
Code:
<img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" />

replace by :
Code:
<img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].png" alt="" border="0" id="forum_statusicon_$forum[forumid]" />


and it's ok
 
Back
Top