Removing featured image on page for Sparkling theme

I’ve removed featured image from header of a post while displaying it on recent post archive. My current codes set in custom CSS are:

.single .single-featured {
  display: none;
}
.single .post-inner-content.secondary-content-box {
  display: none;
}

But I’ve realized there’s still featured image showing up in header of a page. How do I remove it?

Example URL: http://sakeloversguide.com/new-to-sake/

Something like this should do the trick:

.page .single-featured {
  display: none;
}

Add this code to Custom CSS field that you can find under Appearance >> Theme Options >> Other >> Custom CSS.

Let me know if this is what you were looking for.

It worked! thanks a lot!