Quote:
Originally Posted by TrIn@dOr
Can u tell us or me how did u fix that on your site?
Thanks.
|
Figured it out by myself.
If someone need to change the font color of the title of the table u will need to modifiy 2 templates of alp.
"alp_latest_post" and "alp_latest_post_yeni"
In both templates u have this:
HTML Code:
<td class="tcat" colspan="3">
<form action="index.php?do=alppro" method="post" id="alp_form">
<span style="float: right;">
<input class="button" tabindex="1" value="$vbphrase[alp_renew]" id="vB_ReNew" type="button" onclick="alp_change2();" style="overflow: visible; border: 0px inset; background-color: transparent; background-color: transparent; font-family: tahoma, arial, verdana; font-size: 11px; font-weight: bold; text-decoration: none; cursor: pointer; " />
</span>
<input class="button" tabindex="1" value="[ $vbphrase[alp_latestposts] ]" id="vB_ReNew" type="button" onclick="alp_change();" style="overflow: visible; border: 0px inset; background-color: transparent; background-color: transparent; font-family: tahoma, arial, verdana; font-size: 11px; font-weight: bold; text-decoration: none; cursor: pointer; " />
<if condition="$vboptions[alp_spt]== 1">
<input class="button" tabindex="1" value="[ $vbphrase[alp_popular] ]" id="vB_ReNew" type="button" onclick="alp_change2();" style="overflow: visible; border: 0px inset; background-color: transparent; background-color: transparent; font-family: tahoma, arial, verdana; font-size: 11px; font-weight: bold; text-decoration: none; cursor: pointer; " />
And you need it like this:
HTML Code:
<td class="tcat" colspan="3">
<form action="index.php?do=alppro" method="post" id="alp_form">
<span style="float: right;">
<input class="button" tabindex="1" value="$vbphrase[alp_renew]" id="vB_ReNew" type="button" onclick="alp_change2();" style="overflow: visible; border: 0px inset; background-color: transparent; background-color: transparent; font-family: tahoma, arial, verdana; font-size: 11px; font-weight: bold; text-decoration: none; cursor: pointer; color: white;" />
</span>
<input class="button" tabindex="1" value="[ $vbphrase[alp_latestposts] ]" id="vB_ReNew" type="button" onclick="alp_change();" style="overflow: visible; border: 0px inset; background-color: transparent; background-color: transparent; font-family: tahoma, arial, verdana; font-size: 11px; font-weight: bold; text-decoration: none; cursor: pointer; color: white;" />
<if condition="$vboptions[alp_spt]== 1">
<input class="button" tabindex="1" value="[ $vbphrase[alp_popular] ]" id="vB_ReNew" type="button" onclick="alp_change2();" style="overflow: visible; border: 0px inset; background-color: transparent; background-color: transparent; font-family: tahoma, arial, verdana; font-size: 11px; font-weight: bold; text-decoration: none; cursor: pointer; color: white;" />
In the 2 buttons u choose your text color and DONE