How can I remove the text from appearing over the featured slider?

Hi! Very cool theme! I have two questions:
-How can I remove the text from appearing over the featured slider?
-Just below my featured slider there seems to be a footer that reads “Home” (the name of the page). How can I remove this?

Thank you so much!

  1. To remove text from featured slider add this to Theme Options – Other – Custom CSS.
.featured-text {
    display: none;
}
  1. To hide “Home” including box add this to Theme Options – Others – Custom CSS>
#post-428 {
    display: none;
}

You can add these lines to style.css of your Child Theme if you use one.