Installed but 1 Little problem: I think this was made for the old version, so the "
Awards_showcase" is not found in th new YAAS Version. But works fine on vBulletin 3.8.6 and 3.8.7!
And by the way, if you want to change the "Award Request" Text, then I have changed my
Award Request TEXT to
CSS buttons, with a nice HOVER effect!
This is how my "Award Request" button looks like:
If you want the exact same buttons, then "Replace" all the codes in your
"awards_awardbit" with my code below:
Code to replace in
awards_awardbit Template:
Code:
<tr>
<if condition="$vboptions[aw_showicon]">
<td class="$bgclass" align="center">
<img src="$award[award_icon_url]" alt="Award" border="0">
</td>
</if>
<if condition="$vboptions[aw_showimage]">
<td class="$bgclass" align="center">
<a name="award$award[award_id]"></a>
<img src="$award[award_img_url]" alt="Award" alt="$award[award_name]" border="0">
</td>
</if>
<if condition="$vboptions[aw_showmembers]">
<td class="$bgclass"><b><a href="awards.php?do=viewaward&award_id=$award[award_id]">$award[award_name]</a></b>
<div class="smallfont">$award[award_desc]
<hr>
<if condition="$awarduserslist">
$vbphrase[users_with_thisaward]: $aw_ui<br>
$awarduserslist
<else />
$vbphrase[no_award_users]
</if>
</td>
</if>
</div>
<style type="text/css">
.awardrequest {
-moz-box-shadow:inset 0px 0px 0px 0px #8f8f8f;
-webkit-box-shadow:inset 0px 0px 0px 0px #8f8f8f;
box-shadow:inset 0px 0px 0px 0px #8f8f8f;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #262526), color-stop(1, #dfdfdf) );
background:-moz-linear-gradient( center top, #262526 5%, #dfdfdf 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#262526', endColorstr='#dfdfdf');
background-color:#262526;
-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
border:1px solid #dcdcdc;
display:inline-block;
color:#ffffff;
font-family:arial;
font-size:12px;
font-weight:bold;
padding:3px 7px;
text-decoration:none;
}.awardrequest:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #262526) );
background:-moz-linear-gradient( center top, #dfdfdf 5%, #262526 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#262526');
background-color:#dfdfdf;
}.awardrequest:active {
position:relative;
top:1px;
}
/* This imageless css button was generated by CSSButtonGenerator.com */
</style>
<if condition="$vboptions[aw_requestaward]">
<td class="$bgclass" align="center" nowrap>
<if condition="$award[award_allowrequest]">
<a href="request_award.php?$session[sessionurl]award_id=$award[award_id]" class="awardrequest">$vbphrase[request_award]</a>
</if>
</td>
</if>
</tr>
If you want to change your button Effect and color, then go to
http://www.cssbuttongenerator.com/ and generate a new code and replace the old code with the new one! Dont forget to change the 3 class "
classname" to "
awardrequest"! Good Luck