• Resolved andrmcal

    (@andrmcal)


    Is it possible for the entire Styled Box to be a link when clicked on, and also add a hover effect?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Alexis Pandaan

    (@alexius08)

    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?

    Thread Starter andrmcal

    (@andrmcal)

    I am using the Numbered Box. A grow effect would be perfect.

    Plugin Contributor Alexis Pandaan

    (@alexius08)

    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.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Styled Box Link’ is closed to new replies.