Home › Forums › CSS › [Solved] See more – see less CSS-Html problem › Reply To: [Solved] See more – see less CSS-Html problem
July 3, 2015 at 12:19 pm
#204550
Member
It’s because both labels are linked to the same checkbox
<label for="post-1" class="read-more-trigger"></label>
Make the second one
<label for="post-2" class="read-more-trigger"></label>
I see from a previous thread you have a lot of these…well that’s the downside of the “checkbox hack”.
Javascript / Jquery just does this so much easier.