Hi contacto,
You mean to change the H: Featured Page excerpt content to full width right? In functions.php of the child theme, create your widgets and register them. Just copy the parent widget, change the name of widget like TH Child: Featured Page, make customisation and create your custom widget. If you do this, the widgets of parent theme and child both will appear. Use your custom widget of child theme instead of the parent theme.
Just making same file structure in the child theme like /library/widgets won’t overwrite the parent file. Hope this helps.
On line no 226 inside theme folder (ambition-> inc -> widgets-> ambition_widgets.php ) replace this code <?php the_excerpt(); ?>
with <?php the_content(); ?>
Then your full width content will be displayed. You can view in forum how to create a child theme. We have replied it many times.
Thank you!