cXF - Node description only on hover

cXF - Node description only on hover

Admin

Administrator
Messages
1,857
Reaction score
645
Points
113
Admin submitted a new resource:

cXF - Node description only on hover - ... with nice transition

View attachment 1485
Add code to extra.less template:
CSS:
/*** Node description only on hover ***/
@media (min-width: @xf-responsiveMedium) {
    .block--category .block-desc {
        float: right;
        opacity: 0;
        transition: all 0.5s ease-in-out;
    }
    .block--category:hover .block-desc {
        opacity: 1;
        color: #fff;
        float: right;
        padding-top: 6px;
        transition: all 0.5s...

Read more about this resource...
 
Back
Top Bottom