Making link inside column clickable with in entire column

Is there a way to make the link within a column clickable anywhere in the column. I am using classic columns and all the answers I have found use regular columns therefore, they don’t work with the columns I am using. Any help is much appreciated!

Hello @launchcatapult,

Thanks for writing in!

To make an entire classic column to become a link, please do the follow these:
1] Please set up your section, row and columns.
2] Insert a button element in each of the columns and then make sure to add a class my-column-link in the Button Settings > Customize > Class
3] And then in the Cornerstone panel, insert the following custom css in the settings tab, Settings > Custom CSS

.x-column {
    position: relative;
}

.x-column .my-column-link {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

We would love to know if this has worked for you. Thank you.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.