i created button and selected a background image in the containers.
now I want to link the background image as well.
for this i entered the css class in the container: clickable-container
and in the additional CSS I put the following code:
.gb-container.clickable-container .gb-inside-container {
position: relative;
}
.gb-container.clickable-container a:before {
content: ”;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 999;
}
The link works but is not stored on the “container”, but rather in the header area….
What am I doing wrong?