Topic: Post new topic

How link "Post new topic" change with image: http://www.ginkworld.sakamuyo.net/Themes/gink/images/new_topic.gif

Re: Post new topic

Find, ~line 64 in viewforum.php:

$post_link = "\t\t".'<p class="postlink conr"><a href="post.php?fid='.$id.'">'.$lang_forum['Post topic'].'</a></p>'."\n";

Replace it with:

$post_link = "\t\t".'<p class="postlink conr"><img src="http://www.ginkworld.sakamuyo.net/Themes/gink/images/new_topic.gif" alt="'.$lang_forum['Post topic'].'" /></p>'."\n";

3 (edited by Mark 2006-07-14 10:34)

Re: Post new topic

would this work for you?

ooo he beat me with a better solution!

Re: Post new topic

Thanks elbekko


edit// and "Post reply" ? Where line change in viewforum.php

sorry for my english wink

Re: Post new topic

Change lines ~115 and ~124 in viewtopic.php smile If you have some basic HTML knowlegde, I suppose you can do it tongue

6 (edited by Mark 2006-07-14 11:10)

Re: Post new topic

search for

$post_link = '<a href="post.php?tid='.$id.'">'.$lang_topic['Post reply'].'</a>';

replace with

$post_link = "\t\t".'<p class="postlink conr"><img src="http://www.ginkworld.sakamuyo.net/Themes/gink/images/new_reply.gif" alt="'.$lang_topic['Post reply'].'" /></p>'."\n";

i think wink

then just line 124 like elbekko said smile

Re: Post new topic

Something like that I suppose tongue
Oh, and I just see an error in the first one... you can't click on it tongue So I advise to put the link back...
viewforum.php:

$post_link = "\t\t".'<p class="postlink conr"><a href="post.php?fid='.$id.'"><img src="http://www.ginkworld.sakamuyo.net/Themes/gink/images/new_topic.gif" alt="'.$lang_forum['Post topic'].'" /></a></p>'."\n";

viewtopic.php: (both lines)

$post_link = '<a href="post.php?tid='.$id.'"><img src="http://www.ginkworld.sakamuyo.net/Themes/gink/images/reply.gif" alt="'.$lang_topic['Post reply'].'" /></a>';