MyBB Community Forums

Full Version: Transparent Buttons !
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Modification : ContraTR

Demo : http://www.avrilclub.net/demo.htm

Template : showthread_newreply
<style type="text/css">
.l_opac {
    -moz-opacity:0.3;
    filter:alpha(opacity=30);
   }

.f_opac {
  -moz-opacity:1;
   filter:alpha(opacity=100);
     }
</style>
<a href="newreply.php?tid={$tid}"><img src="{$theme['imglangdir']}/newreply.gif" border="0" class="l_opac" onmouseover="this.className='f_opac;'" onmouseout="this.className='l_opac';"></a>

Template : showthread_newthread
<style type="text/css">
.l_opac {
    -moz-opacity:0.3;
    filter:alpha(opacity=30);
   }

.f_opac {
  -moz-opacity:1;
   filter:alpha(opacity=100);
     }
</style>
<a href="newreply.php?tid={$tid}"><img src="{$theme['imglangdir']}/newreply.gif" border="0" class="l_opac" onmouseover="this.className='f_opac;'" onmouseout="this.className='l_opac';"></a>

Template : forumdisplay_newthread
<style type="text/css">
.l_opac {
    -moz-opacity:0.3;
    filter:alpha(opacity=30);
   }

.f_opac {
  -moz-opacity:1;
   filter:alpha(opacity=100);
     }
</style>
<a href="newthread.php?fid={$fid}"><img src="{$theme['imglangdir']}/newthread.gif" border="0" class="l_opac" onmouseover="this.className='f_opac;'" onmouseout="this.className='l_opac';"></a>

Thanks. ContraTR - MyBB.Gen.TR