Hello There,
You might be able to. Please follow these steps:
1] Please edit your page in Cornerstone
2] Insert a unique “my-custom-section” ID in the section settings.
3] Go to the settings tab, Settings > Custom JS and insert the following custom js code
(function($){
$('#my-custom-section').on('click touchstart', function(){
var url = 'http://google.com';
window.open(url, '_blank');
});
$('#my-custom-section').css({'cursor': 'pointer'});
})(jQuery);
We would loved to know if this has work for you. Thank you.