How to enable "read more"?

Sure thing @yungleary! All you have to do is add the following to the CSS. Adjust the font-size and text as needed:

.read-more {
  font-size:0;
}

.read-more:after {
  content: 'Comments...';
  font-size:16px;         /* original font size */

}

2 Likes