Home › Forums › Design › See More – See Less › Reply To: See More – See Less
July 2, 2015 at 9:47 am
#204508
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();
});
});