talkfreelance ( new )

Sandlizard

New Member
This skin was ripped by xixxon from vietvbb the header dont line up right on this one plus his name is all over the templates that need updating nice skin though if it was fixed right
 

hobbes51

New Member
remove this line from the header to align the template:

<td width="12">&nbsp;</td>


there are lots of callbacks to
Code:
http://vizilti.net

in the header and footer... if i clean this up i will post my code
 

akilis

New Member
nice theme but somethings wrong on the footer template

the cyb statistics do not appear in the right position
 

akilis

New Member
nice theme but somethings wrong on the footer template

the cyb statistics do not appear in the right position
 

dexpower

New Member
ok friend , you want to change the banner and navigation area


This is for deleted and simple tricks

change navigation in "header" : vbulletin styles>>edit template>>>header>>search word

browse and search :" phrase [img,partner,banner], change it... , you can remove styles from the copyright viviet or vizilti ^_^

thank you
be happy

thanks for vbteam is the best forum of me ...
 

Filez

New Member
How many times I have to say it veitvbb does not do good work to many bugs in code and im proper rips..also all their call backs bites a cows butt.
 

dexpower

New Member
i fix forum statistic talkfreelance template , change code template now ^^

style >>>edit template >>>header

code not show member and thread

Code:
<!-- ######### STATS TABLE START ######## -->

<table class="title" width="188" border="0" cellpadding="0" cellspacing="0">
<tbody><tr> 
<td class="angbox" valign="top">&nbsp;</td>
<td class="titlebox" valign="top">Forum Statistics:</td>
</tr>
<tr> 
<td colspan="2" class="boxcontent" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">

    <tbody><tr> 
      <td class="news" valign="top"><font class="small">Forum 
        Members:</font> <a href="#">21,042</a> <br>
        <font class="small">Total Threads:</font> <a href="#">62,510</a> 
        <br>
        <font class="small">Total Posts:</font> <a href="#">496,991</a> 
      </td>

    </tr>
    <tr> 
      <td class="news" valign="top" bgcolor="#fefef8">
      </td>
    </tr>
    <tr> 
      <td class="newsend" valign="top">
          <font class="small">There are <a href="#">38 users</a> currently browsing (tf).</font>
      </td>

    </tr>
  </tbody></table></td>
</tr>
<tr> 
<td colspan="2" class="boxendsmaller" valign="top">&nbsp;</td>
</tr>
</tbody></table>

<!-- ######### STATS TABLE END ######## -->


fix code

Code:
<!-- ######### STATS TABLE START ######## -->

<table class="title" width="188" border="0" cellspacing="$stylevar[cellspacing]" cellpadding="0">
              <tr> 
                <td valign="top" class="angbox">&nbsp;</td>

                <td valign="top" class="titlebox">Forum Statistics:</td>
              </tr>
              <tr> 
                <td colspan="2" valign="top" class="boxcontent"><table width="100%" border="0" cellspacing="$stylevar[cellspacing]" cellpadding="0">
                    <tr> 
                      <td valign="top" class="news"><font class="small">$vbphrase[members]:</font> $numbermembers <br>
                        <font class="small">$vbphrase[threads]:</font> $totalthreads 
                        <br>

                        <font class="small">$vbphrase[posts]:</font> $totalposts 
                      </td>
                    </tr>
                    <tr> 
                      <td valign="top" bgcolor="FEFEF8" class="news">
                      </td>
                    </tr>
                    <tr> 
                      <td valign="top" class="newsend">

                      	<font class="small"><center>Welcome to $vboptions[bbtitle]</center></font>
                      </td>
                    </tr>
                  </table></td>
              </tr>
              <tr> 
                <td colspan="2" valign="top" class="boxendsmaller">&nbsp;</td>

              </tr>

            </table>

<!-- ######### STATS TABLE END ######## -->

^^
 
Top