Hey there devonwilliams21,
Hope you’re well today!
If this is the part you’re referring to https://screencast.com/t/xrPvw122qh, you could remove it with some custom CSS. Since the theme has its own custom CSS tab which is located in Appearance >> Theme Options >> Layout Settings >> Custom CSS you can add the following code there:
div#thumb-tray {
display: none !important;
}
This should remove the slider navigation from your home page. Normally I wouldn’t suggest the use of the !important declaration. However, it can sometimes be a necessary evil when over-writing existing styles. You can find more info on !important declaration here:
https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity#The_!important_exception
Hope this helps ??
Best regards,
Bojan