Quote:
Originally Posted by algert
let me know what you've edit to change it to The Chit-Chat lounge? and is it possible to get it left aligned?
|
Quote:
Originally Posted by algert
Hey, can u tell me which file to edit and how to make it Left aligned on the Inferno shoutbox.
Thanks!
|
To change the name find:
Code:
<thead>
<tr>
<td class="tcat" align="center">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_infernoshout')"><img id="collapseimg_forumhome_infernoshout" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_infernoshout].gif" alt="" border="0" /></a>
<a href="infernoshout.php?$session[sessionurl]do=archive">Shoutbox</a>
</td>
</tr>
</thead>
& Change this part..
Code:
<a href="infernoshout.php?$session[sessionurl]do=archive">Shoutbox</a>
To what you want
i.e. change Shoutbox to whatever you want like...
Code:
<thead>
<tr>
<td class="tcat" align="center">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_infernoshout')"><img id="collapseimg_forumhome_infernoshout" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_infernoshout].gif" alt="" border="0" /></a>
<a href="infernoshout.php?$session[sessionurl]do=archive">The Chit-Chat Lounge</a>
</td>
</tr>
</thead>
And to left align simply change this...
Code:
<td class="tcat" align="center">
To this...
Code:
<td class="tcat" align="left">
Enjoy