Hi There,
Let’s have a different approach, please add a unique ID for each of your columns so we can easily target them.
Use this ID on the respective columns (morro, event, fest, anledninger, musikk)
Then add this on the Page JS
jQuery( document ).ready(function($) {
$('#morro').on('click touched', function() {
window.location.href = 'LINK URL HERE'; });
$('#event').on('click touched', function() {
window.location.href = 'LINK URL HERE'; });
$('#fest').on('click touched', function() {
window.location.href = 'LINK URL HERE'; });
$('#anledninger').on('click touched', function() {
window.location.href = 'LINK URL HERE'; });
$('#musikk').on('click touched', function() {
window.location.href = 'LINK URL HERE'; });
});
Replace all the instances of LINK URL HERE, to where you want to link those respective columns.
Make sure you don’t accidentally remove even one quote on this code, else this not going to work.
Then add this to Page CSS
#morro,
#event,
#fest,
#anledninger,
#musikk {
cursor: pointer;
}
This will give you the pointer cursor when you hover over on the columns, giving your viewers a hint that these columns are linked/clickable.
Hope it helps,
Cheers!