Many thanks Ben for the extra work around - this worked a treat! 
Kat
Many thanks Ben for the extra work around - this worked a treat! 
Kat
Awesome! Enjoy BB! 
Ben
Hey Ben,
Iāve been using your method above to make a full column a link on several sites now. It works great, however there is a bit of CSS I canāt quite figure out.
I should mention that I am using the columns to link to anchors on the same page, so not sure if this has something to do with it. I have used the text decoration: none; to remove underlining on hover, however when clicking one of these column links to an anchor down the page, after scrolling back up I notice that the text is underlined.
I believe there is a pseudo class that is underlining the text in the column after it is clicked.
Can you help me resolve this so the text doesnāt get underlined after clicking?
Thanks,
David
Hey David,
Try using the :visited selector and see if that works. If it doesnāt, do you mind sharing the URL of the site in question so we can check?
Ben
Iāve been playing with this too, and it works great for me, so thanks very much.
One thing I have noticed is that āLink target in a new Windowā is not being recognized from the Callout settings.
But Iām not sure how to add ātarget="_blank"ā to the JQuery ?
Iām not sure if the callout setting can be looked at, or if we need two versions, one for each option?
TIA, Dave
Hey Dave,
We could make it so it picks up the Link Target setting under the Call To Action tab as well. Try setting that to New Window, then use the script below and see if it works.
jQuery(document).ready(function() {
jQuery('.col-link .fl-col-content').each(function() {
var callout_link = jQuery(this).find('a').first().attr('href');
callout_target = jQuery(this).find('a').first().attr('target');
jQuery(this).wrapInner('<a></a>');
jQuery(this).find('a').first().attr({href:callout_link,target:callout_target});
});
});
Ben
Thanks Ben,
Worked a treat - thank you so muchā¦
Dave
No worries at all, and glad I could help! Have fun! 
Ben