Newby Q on accessing html

Hello I am fiddeling around with the online demo. I see you can place a block to fill with plain vanilla html.
But can I access/ edit any plain html from within the editor?

E.g. If I code a template with an accordeon effect (like for a FAQ section) can the code be accessed from the editor so my client can add content?

Many thanks for your reply - Fred

Sure, no problem. You can always click the raw html section and edit again.

Hello Nik - as a follow up to the project my client still cannot make edits.

I tried myself but can only add content above the editable areas I defined with the sitecake tags.
Q: what is wrong here? Is the CSS of the template making it impossible or something else?
Many thanks in advance for your reply - Fred
PS let me know if you need the PW

Please send Sitecake login detail in personal message. I will check it out.

Hm, now I see the problem.

You should put sc-content class to the direct parent div with editable text and images. You can’t have additional div wrappers between sc-content div and editable content tags.

This is not good:

<div class="sc-content">
   <div class="col-xl-9 col-lg-3 py-5 px-lg-5">
      <div class="section-title">
         <h2>Trudy van den Berg</h2>
      </div>
      <img src="i/portret.jpg" alt="" class="img-fluid float-end imgshadow">
      <p>Tijdens mijn studie geneeskunde aan de Vrije Universiteit te Amsterdam volgde ik de colleges homeopathie.
Verrast door de holistische kijk op ziekte besloot ik tijdens de co-schappen een kijkje te nemen in de praktijk van een arts voor homeopathie in Amsterdam. Na deze indrukwekkende korte stage besloot ik homeopathie te gaan studeren. 
   </div>
</div>

This is good:

<div class="col-xl-9 col-lg-3 py-5 px-lg-5">
   <div class="sc-content section-title">
      <h2>Trudy van den Berg</h2>
   </div>
<div class="sc-content">
   <img src="i/portret.jpg" alt="" class="img-fluid float-end imgshadow">
    <p>Tijdens mijn studie geneeskunde aan de Vrije Universiteit te Amsterdam volgde ik de colleges homeopathie.
Verrast door de holistische kijk op ziekte besloot ik tijdens de co-schappen een kijkje te nemen in de praktijk van een arts voor homeopathie in Amsterdam. Na deze indrukwekkende korte stage besloot ik homeopathie te gaan studeren.  </p>
</div>

Hello Nik - thanks for your suggestion. I made adjustments and it works fine now.
Thanks!