Hi @andrmcal! None of the modes available within the styled box can be turned into a massive link. Adding a hover effect for them might be possible through custom CSS, though. If the hover effect could work without a link for your use case, what styled box mode are you using, and what kind of hover effect do you want for it?
I am using the Numbered Box. A grow effect would be perfect.
Hi @andrmcal! Here’s a custom CSS snippet you could use for making the numbered box grow on hover:
.ub-number-panel{
transition: all 0.3s linear;
}
.ub-number-panel:hover{
transform: scale(2);
}
You can adjust the values of the transform scale and animation duration to fit your use case.
Please let us know it goes.