Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Design See More – See Less Reply To: See More – See Less

#204508
Shikkediel
Participant

Something like this would require some JavaScript (or less desirably a CSS hack). I don’t see any of that going on? The slider loads the jQuery library already so that would be easiest to use.

.read-more-content {
display: none;
}
$(document).ready(function() {

  $('.read-more-show').click(function(e) {

      e.preventDefault();
      $('.read-more-content').slideDown();
  });

  $('.read-more-hide').click(function(e) {

      e.preventDefault();
      $('.read-more-content').slideUp();
  });
});