The new Online/Offline avatar's opacity

Duuuhhude

New Member
The new Online/Offline avatar's opacity

this is working on vb 3.6.8 must work in all 3.6.x versions
Works on Firefox and IE,
i dont have another browser you can tell me if is working in others

Installation

Installation is a simple follow these simple steps:

* Upload Files.
* Install WarLion Online/Offcline product
* Add custom Css

Step One :

Upload to your forum via ftp functions_wl_online_offline.php to
forum/includes/

Step two:

Installl the Product via admincp
Go to your admincp==>Plugins & Products ==>Manage Products==>[Add/Import Product]

Last Step:

Go to your admincp => styles & templates => main css => aditional css
and add in the end.
Code:
.fade img {
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=10);
-moz-opacity: 0.1;
opacity: .10;
-khtml-opacity: 0.1;
}
.fade:hover img {
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
-khtml-opacity: 1;
}

Screenshot:
e5k1s1.gif


Thats all enjoy.
 

Duuuhhude

New Member
The new Online/Offline avatar's opacity

this is working on vb 3.6.8 must work in all 3.6.x versions
Works on Firefox and IE,
i dont have another browser you can tell me if is working in others

Installation

Installation is a simple follow these simple steps:

* Upload Files.
* Install WarLion Online/Offcline product
* Add custom Css

Step One :

Upload to your forum via ftp functions_wl_online_offline.php to
forum/includes/

Step two:

Installl the Product via admincp
Go to your admincp==>Plugins & Products ==>Manage Products==>[Add/Import Product]

Last Step:

Go to your admincp => styles & templates => main css => aditional css
and add in the end.
Code:
.fade img {
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=10);
-moz-opacity: 0.1;
opacity: .10;
-khtml-opacity: 0.1;
}
.fade:hover img {
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
-khtml-opacity: 1;
}

Screenshot:
e5k1s1.gif


Thats all enjoy.
 
Top