I used to use this code from this post to make a container clickable taking the inside a href url.
.gb-container.my-linked-container .gb-inside-container {
position: initial;
}
.gb-container.my-linked-container a:before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 10;
}
.gb-container.my-linked-container a {
text-decoration: none;
}
With the new version of GP + GB it doesn’t work, I think it’s because it doesn’t create the .gb-inside-container div.
How can I make this work again?