Thead collapse image effect
Im this tutorial you will learn how to add a hover effect to the Thead collapse buttons (This is seen alot on premium/custom themes)
First go to global.css and find the code:
Now replace that with:
Then save global.css and you are done.
Demo: http://icypromotion.com (Scroll over the thead)
-Xige Time.
Im this tutorial you will learn how to add a hover effect to the Thead collapse buttons (This is seen alot on premium/custom themes)
First go to global.css and find the code:
.expcolimage {
float: right;
width: auto;
vertical-align: middle;
margin-top: 3px;
}
Now replace that with:
.expcolimage {
width: auto;
float: right;
vertical-align: middle;
margin-top: 0px;
}
.thead .expcolimage img {
opacity: 0;
-o-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
}
.thead:hover .expcolimage img {
opacity: 1;
}
Then save global.css and you are done.
Demo: http://icypromotion.com (Scroll over the thead)
-Xige Time.