The versions aren't too different, are they?
Why don't you try supporting me with what you know about the new version?
Maybe I figure something out based on how you would do that on IP-*53.
Well, I tried by the most rustic form: through the language file, but the results weren't so good to those words that appear in other parts of the forum (like the word "forum" itself, for example. I just want to change the links on
forumline,
forumlinenb and
quick-links left table. (to put images with the words instead, like

and

).
I belive it's not css, I think it's HTML, am I right?
I've found this: (with web developer -> show source code tool)
<tr>
<td class="forum-buttons" colspan="3" width="100%">
<a href="http://www.lardosrpgs.com/durmstrang/index.php?sid=6dc6bd6df3a176129bf0c8dccbf4be67">Home</a> <img src="http://www.lardosrpgs.com/durmstrang/templates/mg_themes/images/ice/menu_sep.png" alt="">
<a href="http://www.lardosrpgs.com/durmstrang/forum.php?sid=6dc6bd6df3a176129bf0c8dccbf4be67">Forum</a> <img src="http://www.lardosrpgs.com/durmstrang/templates/mg_themes/images/ice/menu_sep.png" alt="">
<a href="http://www.lardosrpgs.com/durmstrang/search.php?search_id=newposts&sid=6dc6bd6df3a176129bf0c8dccbf4be67">Novos</a> <img src="http://www.lardosrpgs.com/durmstrang/templates/mg_themes/images/ice/menu_sep.png" alt="">
<a href="http://www.lardosrpgs.com/durmstrang/profile_main.php?sid=6dc6bd6df3a176129bf0c8dccbf4be67">Profile</a> <img src="http://www.lardosrpgs.com/durmstrang/templates/mg_themes/images/ice/menu_sep.png" alt="">
<a href="http://www.lardosrpgs.com/durmstrang/search.php?sid=6dc6bd6df3a176129bf0c8dccbf4be67">Search</a> <img src="http://www.lardosrpgs.com/durmstrang/templates/mg_themes/images/ice/menu_sep.png" alt="">
<a href="http://www.lardosrpgs.com/durmstrang/faq.php?sid=6dc6bd6df3a176129bf0c8dccbf4be67">FAQ</a> <img src="http://www.lardosrpgs.com/durmstrang/templates/mg_themes/images/ice/menu_sep.png" alt="">
<a href="http://www.lardosrpgs.com/durmstrang/login_ip.php?logout=true&sid=6dc6bd6df3a176129bf0c8dccbf4be67">Log out</a>
</td>
</tr>
I will know what to do whenever I find the path to this html general file, if there is one. All that I'll have to do is to change the titles to the url of the images I want instead.
Does anyone know where this file is located?
The only think I could find was this: (in 4 different files, the same code. They are 'templates/mg_themes/overall_header.tpl', 'templates/mg_themes/overall_header_bl.tpl', 'templates/mg_themes/overall_header_sc.tpl', 'templates/mg_themes/overall_header_ss.tpl')
<tr>
<td class="forum-buttons" colspan="3" width="100%">
<a href="{FULL_SITE_PATH}{U_PORTAL}">{L_HOME}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<a href="{FULL_SITE_PATH}{U_INDEX}">{L_INDEX}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<!-- BEGIN switch_upi2db_off -->
<a href="{FULL_SITE_PATH}{U_SEARCH_NEW}">{L_NEW2}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<!-- END switch_upi2db_off -->
<!-- BEGIN switch_upi2db_on -->
<span style="vertical-align:top;">{L_POSTS}: </span><a href="{FULL_SITE_PATH}{U_SEARCH_NEW}">{L_NEW2}</a><span style="vertical-align:top;"> • </span>{L_DISPLAY_U}<span style="vertical-align:top;"> • </span>{L_DISPLAY_M}<span style="vertical-align:top;"> • </span>{L_DISPLAY_P} <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<!-- END switch_upi2db_on -->
<!-- BEGIN switch_user_logged_in -->
<a href="{FULL_SITE_PATH}{U_PROFILE}">{L_PROFILE}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<!-- END switch_user_logged_in -->
<a href="{FULL_SITE_PATH}{U_SEARCH}">{L_SEARCH}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<a href="{FULL_SITE_PATH}{U_FAQ}">{L_FAQ}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<!-- BEGIN switch_user_logged_out -->
<a href="{FULL_SITE_PATH}{U_REGISTER}">{L_REGISTER}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<!-- END switch_user_logged_out -->
<a href="{FULL_SITE_PATH}{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT2}</a>
</td>
</tr>
Am I in the right way?