@passiveincomeguys:
1. To remove masthead from individual pages.
Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
body:not(.home) .custom-header {
display:none;
}
body:not(.home) #site-header-main {
background-color:#000;
}
body:not(.home) .breadcrumb-area.custom {
margin-top:90px;
}
2. To slow down the testimonial slider you will need to create a child and do a bit of customization. Let me know if you are familiar with child theme customization other wise I suggest you to hire a customizer.
3. To make button to other page.
Go to => Appearance => Customize => Additional CSS and Replace
#featured-content-section{pointer-events:none}
BY the following code.
#featured-content-section article {
pointer-events:none;
}
4. To remove the Blog feed from the homepage
Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
.home #content {
display:none;
}
5. To remove the Menu button on mobile
Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
.menu-toggle-wrapper {
display:none;
}
Let me know if this helps you out!
Kind Regards,
Skandha