Hey @klepow,
The column fade setting is a scroll based function so you need to scroll to show the contents of the column. What you need is not a feature offered by Pro so you would need a custom script to turn the opacity of the column to 1 when it reaches your specified time. Based on your current setup, you’ll need a script like this:
(function($) {
setTimeout(function() {
$('.e4-11').animate({"opacity": "1"}, "slow");
}, 3000);
})(jQuery);
See https://youtu.be/8h3C-99sYJ0
Assign a class to your column and use it to replace e4-11. The number 3000 in the code is 3 seconds. You can changed that as per your needs. Here is the documentation for the animate function.
Just note that what I’ve given is only a guide. This is not part of our support service so issues that would arise from the use of the code and further enhancements would be outside the scope of our support.
Hope that helps and thank you for understanding.