Hello There,
Thanks for writing in!
You can achieve this by adding another paragraph containing a link at the bottom of the text in each of your columns. For example, you have a text content like this:
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer scelerisque eros eu pulvinar dictum. Nunc egestas massa at elit bibendum, cursus fringilla nunc faucibus. </p>
<p><a class="my-category-link" href="http://example.com/category/burger/" title="Bison Burger"></a></p>
And then insert the following custom css in the settings tab, Settings > Custom CSS
a.my-category-link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 100;
}
This method will make the entire column being link to your category page. You can get the category page link by going to Posts > Categories.
Hope this helps.