Hey @nezzazvoni,
Yes. The methods Nabeel linked to will change the appearance because the column is wrapped with an anchor tag. Though that is perfectly valid in HTML5, I personally don’t recommend that because it might break the layout as what you have experienced.
Since you’re using Javascript, other scripts with errors could break it also and I believe it’s bad to apply to critical functions of your site such as a link.
Before I give you an alternative, please first consider the 2 best non-coding solutions.
1. Create your design in Photoshop, Canva or other image editing software. Then, insert the image using the Image element then just activate the Image Link option.
2. If you just have a few texts, you can fill the Column with a Button element. You can watch the setup from this video: https://youtu.be/LrGgBe-stcw
-----------------------------------------------------------------------------------
Here’s the alternative Javascript solution using the Javascript open()
method. See https://www.w3schools.com/jsref/met_win_open.asp
1. Add the following sample code in your page’s Content JS. I believe you’ll get the pattern in the code if you have more columns. It’s just 1 function per column/link.
function greenColumn() {
window.open("https://www.w3schools.com");
}
function redColumn() {
window.open("https://www.google.com");
}
2. Add the onclick
attribute and the function in the JS code as the value like in the following screenshot.

You can watch the whole process in the video below.
Disclaimer: Please just note that custom coding is beyond the scope of our support. We will not support issues that will arise from the use of the sample code. If you need extra features for the column or enhancement for the sample code, please have a developer continue custom coding for you.
Hope that helps and thank you for understanding.