Hi Jack3,
1) To move logo to be inline with menu, Please go to ‘Appearance > Customize > Header’ then choose the header ‘style 1’.
2) To unstick the right sidebar, go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.
.widget-area .sticky-wrapper,
.widget-area .sticky-wrapper.is-sticky {
height: auto !important;
}
.widget-area .sticky-wrapper .sticky-sidebar,
.widget-area .sticky-wrapper.is-sticky .sticky-sidebar {
width: 100% !important;
position: relative !important;
top: auto !important;
}
3) To make content area page wider add the below Custom Code to ‘Appearance > Customize > Additional CSS’
.site-content .content-area {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%
}
4) To edit the Footer please go to ‘Appearance > Customize > Footer’ then you will find various options.
Thanks