Hello There,
Thanks for updating in! This might not work in your set up. Please try a different approach and do the following:
1.) Please edit your page back in Cornerstone.
2.) In each of your columns, go to the “Customize” tab and add a unique ID column-1, column-2, column-3
for the column. For example:
3.) Find the Cornerstone custom js section, Custom JS and insert the following custom js code
(function($){
$(document).ready(function($) {
$("#column-1").append("<a href='https://google.com/'></a>");
$("#column-2").append("<a href='https://facebook.com/'></a>");
$("#column-3").append("<a href='https://twitter.com/'></a>");
});
})(jQuery);
4.) And then
#column-1, #column-2, #column-3 {
position: relative;
}
#column-1 > a,
#column-2 > a,
#column-3 > a {
display: block;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 10;
}
We would loved to know if this has work for you. Thank you.