Thanks Steve for your answer. I compared the code of the parent theme to the child theme because there is a section that is not inherited from parent to child theme, and I am not sure but I think it could be related to the installed widget.
The section code that is not shown into the child theme is the following:
(you can see the parent theme in https://www.seedmusiccenter.com)
<div class="widget-wrap">
<div class="container">
::before
<h2 class="widget-title">New Release Album</h2>
::after
</div>
<div id="tmpl-image-grid" class="grid cbp-so-section cbp-so-init cbp-so-animate" style="position: relative; height: 746.266px;">
:: before
<div class="grid-sizer" style="position: absolute; left: 0px; top: 0px;></div>
<div class="cbp-so-side cbp-so-side-left album featured col-1" style="position: absolute; left:448px; top: 0px;">...</div>
::after
</div>
</div>
</div>
For example, I looked up the string text “New Release Album” above, into the folder theme and I could find it in file “import-widgets.wie” (see the following code) for this reason, I think it could be related to the WordPress Import Widget and could be the reason why this section does not appear into the child theme.
Other example: I looked up the string “<div class=”widget-wrap”>” above and I could find it into the file “class-tmpl-image-gallery.php” in the path “\MusicTheme\widgets\class-tmpl-image-gallery.php”
Question:
What can I do to inherit this code from parent to child theme?
Thanks