@karsten13
The original cahcomic.css contains only this.
Hope this helps you. I am not very good with all this code stuff.
Mainly I do it through trial and error.
/* The basic container */
.cahcomiccontainer {
overflow: hidden;
/* To make the height of the container exact. */
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#cahcomiccontent {
white-space: nowrap;
position: relative;
overflow: hidden; /* Required to make ellipsis work */
text-overflow: clip;
top: 0%;
-webkit-transition: top 3s, height 3s;
-moz-transition: top 3s, height 3s;
transition: top 3s, height 3s;
}