How change child theme’s boxed layout to fullwidth in genesis? [closed]

To apply the same width to everything, change the max-width of the .wrap

.wrap {
    max-width: 90%;
}

If you just want to change the width of the content section, add the following code:

.site-inner .wrap {
    max-width: 90%;
}

Hope it works for you, good luck.