Buy me a coffee

How to create Drop down boxes to reveal full text?

If you want the paragraph to not be visible unless the title is clicked, you can use Accordion Block to achieve this.
#1. First, add an Accordion Block

55d8fcef60f6c7a89ee7 Min

#2. Next, enter Title and Description

A24e88970a8eadd0f49f Min

You will see have this

099f96021c1bbb45e20a Min

#3. To remove lines on top/bottom, you can use find Accordion ID

0c7088fd0fe4a8baf1f5 Min

then use CSS code like this

#block-yui_3_17_2_1_1725175574269_15595 div.accordion-divider {
    display: none;
}

3e39d147545ef300aa4f Min

You will have

C37a33dab5c3129d4bd2 Min

and when click it

89963299b8801fde4691 Min

to make accordion text show full text, use this code to Custom CSS box

div.accordion-item__description {
    max-width: 100% !important;
}

335b729bfa825ddc0493 Min