Featured image covering post title

how to stop a posts featured image from covering the post title ?

Hello @global411,

Thanks for asking. :slight_smile:

You can add following CSS under X > Theme Options > CSS:

.entry-wrap {
    clear: both;
}

I have found the proper CSS code selector using the Chrome browser Developer Toolbar:

https://www.youtube.com/watch?v=wcFnnxfA70g

For the CSS code itself, I suggest that you get started with this tutorial:

https://www.youtube.com/watch?v=yfoY53QXEnI

Thanks.

Added and works, but ??


&

is way large and title is below the image not above ? did I miss something ?

O and the code is misaligning the main blog page http://kidsbalance.bike/blog/ ??

Hi Erick,

Since the CSS code provided above cause a lot of issues, please remove it and add this instead.

.single-post .x-main.left .hentry .entry-featured {
	margin-right: 0;
}

And

I believe I provided you a solution for that here.

Please be reminded that further customization from here would fall outside of the support that we can offer.

Thanks,

I hate to ask and really have been trying, but I can not get the search results page
to tone down the images like we did on the blog post page and get the hover to stop as well please please. :slight_smile:
http://kidsbalance.bike/?s=bike

Hello There,

The product items does not have .hentry class which is why it does not have the same layout as the blog index. To resolve this, since your child theme is set up, please add the following code in your child theme’s functions.php file

// Custom Product Post Class
// =============================================================================
function custom_product_class( $output ) {

  if ( is_search() && 'product' == get_post_type()  ) {
      $output[] = 'hentry';
  }

  return $output;

}
add_filter( 'post_class', 'custom_product_class' );
// =============================================================================

We would loved to know if this has work for you. Thank you.

seems to have worked the images do not take over, thank you

You’re more than welcome, glad we could help.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.