Hey Rodrigo,
The way I’ve achieved this in the past was placing the link block inside of each DIV, give it a position:absolute
and set it to 0 on top, bottom, left, and right. Make sure the the parent DIV the link block is in is set to position:relative
or absolute
to keep the link block contained within it.
Give the link block a higher z-index then the div content and it’ll appear on top of everything inside of the DIV. I would hide the link blocks while you’re still working on the content so you can click through the content. When you’re ready to go live, se the link blocks back to Display: block
.
Does this make sense?