We do not provide support for hacks, so use them at your own risk. If you're not comfortable with coding, we recommend against using this workaround.
Step 1 Create the layout
Create a column with the modules you would like to use. When your column is ready, open the module settings and switch from "Content" to "Column". Find the "Miscellaneous" option and click on it. Add the "col-link" class name in the "Classes" field:
Step 2 Add JavaScript
Add the "Code" module as the last item on the page. In the module settings click the "Edit Code" button and in the code editor add the following JavaScript:
<script>
(function($) {
$('.col-link').click(function(e) {
e.preventDefault();
window.location.href = '/your-url';
});
})(jQuery);
</script>
Step 3 Replace the link
In the JavaScript code, replace "/your-url" with the actual link that you would like to use.