Hello Uli,
You will have to edit the page and manually remove the
characters from the HTML Table code and replace it with an empty space which you have inserted in the Accordion element content item.
<table class="portal-Table">
<thead>
<tr>
<th>Termin</th>
<th>Uhrzeit</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>18.10.2022 - 06.12.2022</td>
<td>17:00</td>
<td>freie Plätze: keine</td>
<td></td>
</tr>
<tr>
<td>14.11.2022 - 23.12.2022</td>
<td>19:00</td>
<td>freie Plätze: 4</td>
<td><a class="miya" href="kursanmeldung?kursbezeichnung=Geburtsvorbereitung&id=511a4000406f10308fde00000101000a&termin=14.11.2022">Anmeldung</a></td>
</tr>
<tr>
<td>01.12.2022 - 12.01.2023</td>
<td>19:15</td>
<td>freie Plätze: 5</td>
<td><a class="miya" href="kursanmeldung?kursbezeichnung=Geburtsvorbereitung&id=bc9fc000425f1030ac7200000101000a&termin=01.12.2022">Anmeldung</a></td>
</tr>
<tr>
<td>13.12.2022 - 24.01.2023</td>
<td>17:00</td>
<td>freie Plätze: 7</td>
<td><a class="miya" href="kursanmeldung?kursbezeichnung=Geburtsvorbereitung&id=d75fe0005f991030b4e600000101000a&termin=13.12.2022">Anmeldung</a></td>
</tr>
<tr>
<td>05.01.2023 - 16.02.2023</td>
<td>16:30</td>
<td>freie Plätze: 7</td>
<td><a class="miya" href="kursanmeldung?kursbezeichnung=Geburtsvorbereitung&id=d01d8000651e103087a700000101000a&termin=05.01.2023">Anmeldung</a></td>
</tr>
<tr>
<td>16.01.2023 - 27.02.2023</td>
<td>19:00</td>
<td>freie Plätze: 6</td>
<td><a class="miya" href="kursanmeldung?kursbezeichnung=Geburtsvorbereitung&id=cfa9a00062f3103087a700000101000a&termin=16.01.2023">Anmeldung</a></td>
</tr>
<tr>
<td>25.01.2023 - 08.03.2023</td>
<td>17:30</td>
<td>freie Plätze: 8</td>
<td><a class="miya" href="kursanmeldung?kursbezeichnung=Geburtsvorbereitung&id=7b37600062dc103087a700000101000a&termin=25.01.2023">Anmeldung</a></td>
</tr>
<tr>
<td>14.02.2023 - 28.03.2023</td>
<td>17:00</td>
<td>freie Plätze: 10</td>
<td><a class="miya" href="kursanmeldung?kursbezeichnung=Geburtsvorbereitung&id=d797e00073da1030aaa200000101000a&termin=14.02.2023">Anmeldung</a></td>
</tr>
<tr>
<td>12.04.2023 - 24.05.2023</td>
<td>17:30</td>
<td>freie Plätze: 10</td>
<td><a class="miya" href="kursanmeldung?kursbezeichnung=Geburtsvorbereitung&id=9d53000077231030aaa200000101000a&termin=12.04.2023">Anmeldung</a></td>
</tr>
</tbody>
</table>
Please be aware that HTML table does not collapse when the space is too narrow. It will always be cut off. To prevent this from happening, adding this nifty little CSS in the page’s CSS section or in Cornerstone > Theme Options > CSS will allow the viewer to scroll to the right of the screen to display the rest of the table:
.x-acc .x-acc-content {
overflow-x: scroll;
}
The code above serves as an example code. Feel free to modify it when needed. Please note that custom coding is beyond the scope of our support. You will have to maintain any custom coding to make sure that it will still work after any updates or does not create any issues or incompatibility in the future.
Hope this makes sense.