Make a column clickable

Is there any update to make columns clickable, has this feature been released yet? I have 3 columns, I need to make clickable to another link

I used the jquery method you all provided, but I need to know the jquery of how to open in another webpage instead of in the same target browser.

Thanks a million

hi,
you can also use a button with some custom css. i use it this way:
drag a button to the column you want clickable
adjust the button width and height to auto
make a button class in customize. eg. columnbtn
then use this css code in theme options/css

 .columnbtn {
 display: flex;
 position: absolute;
 width: 100%;
 height: 100%;
 top: 0;
 left: 0;
 z-index: 10;
 }

now the button is all over the column. so you also can adjust interactions :slight_smile:
cheers
harry

Hey Marshae,

Please take a look at the code provided in the 3rd party forum here https://stackoverflow.com/questions/19851782/how-to-open-a-url-in-a-new-tab-using-javascript-or-jquery

Just note that we do not provide support for custom codes because they are prone to errors. It’s best that you fill the column with a Button element like what Harry suggested. You will not need CSS though if your content is simple.

Thanks for chiming in, Harry.

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