Category images not showing on mobile view

Hello,

We are using the TaskHive theme and the category images are not showing on mobile view (only text is visible, no images). On desktop everything works fine.

Here is what we tried so far:

  1. Cleared all caches (SpeedyCache plugin).
  2. Disabled minify and JS/CSS optimization options.
  3. Added custom CSS in Customizer → Additional CSS:
@media only screen and (max-width: 47.99em) {
  .hp-listing-category--view-block .hp-listing-category__header {
    display: block !important;
  }
}
  1. Also tried variations with @media (max-width: 768px) and other selectors.
  2. Added CSS injection through functions.php with wp_add_inline_style.
  3. Regenerated thumbnails, checked that images exist (SVG 800x800).

Unfortunately, nothing worked — the category images are still hidden on mobile.

Could you please check if this is a known issue with TaskHive and provide the correct fix?

Thank you!

Hi,

Please use this CSS snippet:

.hp-listing-category--view-block .hp-listing-category__header {
    display: block;
}

You can add a snippet using this doc: How to add custom code snippets - HivePress Help Center

Also, please note that it can require further customization.

I hope it helps

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